我的问题是,有可能有一个UIView显示图像,如果是这样,我怎么做呢?所有我可以找到的colorwithpatternImage不再使用swift。
我现在想使用的代码是:
@H_404_3@self.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background.png"]];预先感谢您的答案!
参见
原文链接:https://www.f2er.com/swift/321059.htmlUIColor
documentation。
在Swift中,你必须调用一个方便初始化器。这是因为在Swift中,返回其类的实例的所有Objective-C类方法都变成了便利初始化。
下面是它在Swift中的样子:
@H_404_3@self.view.backgroundColor = UIColor(patternImage: UIImage(named: "background.png"))(UIColor *)colorWithPatternImage:(UIImage *)图像返回一个UIColor实例,因此它将成为Swift中的一个便利初始化程序。类似地,UIImage imageNamed:变为init(patternImage image:UIImage!)。