我正在尝试在我的
Swift应用程序的viewController中添加图像背景,但colorWithPatternImage不可用..还有其他形式或者必须将其添加到imageView中吗?
我正在尝试使用此代码:
let imageName = "image.png" self.view.backgroundColor = UIColor.colorWithPatternImage(UIImage(named:imageName))
谢谢!
您应该使用UIColor init方法:
原文链接:https://www.f2er.com/swift/318936.htmlview.backgroundColor = UIColor(patternImage: UIImage(named:imageName))