为什么我无法将SCNView的backgroundColor属性设置为颜色模式?
// configure the view's background color
scnView.backgroundColor = [UIColor redColor]; // this works
// doesn't seem to work with SCNView
scnView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"someImage.png"]];
// tried this in a different example with just a UIView and it works
self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"someImage.png"]];
我做错了什么?
以下是文档的摘录。 colorWithPatternImage:
您可以使用图案颜色来设置填充或描边颜色 会是一种纯色。在绘制过程中,图案颜色的图像是 根据需要平铺以覆盖给定区域。