任何人都可以帮我这个代码吗?根据{{1}},它有三个问题:
Xcode
答案 0 :(得分:-1)
您的代码中存在3个主要问题,全部都在showFact()
函数中。
首先,从"enter code here"
声明的末尾删除newColor
。
其次,randomColor
是未声明的变量。我想你想用newColor
,不是吗?
@IBAction func showFact() {
funFactLabel.text = factProvider.randomFact()
let newColor = UIColor(red: 223/255.0, green: 86/255.0, blue: 94/255.0, alpha: 1.0)
view.backgroundColor = newColor
funFactButton.tintColor = newColor
}