最佳答案
我正在尝试以编程方式创建一个 UIImage 视图,我有一个新的视图,我尝试这样做
let imageName = "yourImage.png"
yourview.backgroundColor = UIColor.colorWithPatternImage(UIImage(named:imageName))
这没有工作,因为我不知道这应该是 yourview在第二行。
Question: How do I make a UIImageView appear on the screen by coding it instead of doing it in the storyboard