我试图在我的Swift应用程序的viewController中添加图像背景,但是colorWithPatternImage不可用..还有其他形式或者必须将它添加到imageView中吗?
我尝试使用此代码进行此操作:
let imageName = "image.png"
self.view.backgroundColor = UIColor.colorWithPatternImage(UIImage(named:imageName))
谢谢!
答案 0 :(得分:14)
您应该使用UIColor init方法:
view.backgroundColor = UIColor(patternImage: UIImage(named:imageName))