如何在我的视图中在swift中添加背景图像?

前端之家收集整理的这篇文章主要介绍了如何在我的视图中在swift中添加背景图像?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在我的 Swift应用程序的viewController中添加图像背景,但colorWithPatternImage不可用..还有其他形式或者必须将其添加到imageView中吗?

我正在尝试使用此代码

let imageName = "image.png"
    self.view.backgroundColor = UIColor.colorWithPatternImage(UIImage(named:imageName))

谢谢!

您应该使用UIColor init方法
view.backgroundColor = UIColor(patternImage: UIImage(named:imageName))
原文链接:https://www.f2er.com/swift/318936.html

猜你在找的Swift相关文章