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

时间:2014-07-25 07:44:28

标签: swift xcode6

我试图在我的Swift应用程序的viewController中添加图像背景,但是colorWithPatternImage不可用..还有其他形式或者必须将它添加到imageView中吗?

我尝试使用此代码进行此操作:

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

谢谢!

1 个答案:

答案 0 :(得分:14)

您应该使用UIColor init方法:

view.backgroundColor = UIColor(patternImage: UIImage(named:imageName))