标签: swift uibutton uicolor
func changeColor(sender: UIButton) { self.view.backgroundColor = UIColor.randomColor() }
生成错误: - Type 'UIColor' has no member 'randomColor'。
Type 'UIColor' has no member 'randomColor'
答案 0 :(得分:0)
这是因为randomColor上没有方法UIColor方法。
randomColor
UIColor
有关可用方法,请参阅UIColor Documentation。