设置UILabel的背景颜色?

时间:2016-03-17 01:18:48

标签: swift

我知道这可能是今天堆栈溢出最简单的问题,但现在就是这样。我正在尝试为UILabel设置背景颜色。这是我的代码:

@IBAction func chemistryButton0(sender: UIButton){
    if chemistryButton0?.backgroundColor == UIColor(red: 212, green: 142, blue: 69) {
        let detailBackgroundColor.backgroundColor == UIColor(red: 212, green: 142, blue: 69)
    }
}

backgroundColor语句中有错误,但它表示语句应该分开。

请帮忙。

提前致谢。

2 个答案:

答案 0 :(得分:0)

该行应

detailBackgroundColor.backgroundColor = UIColor(red: 212, green: 142, blue: 69)

"让"只有在声明一个新常量时才需要," =="是一个比较运算符,而" ="设置值

答案 1 :(得分:0)

我认为你在那里留下了alpha,你的代码应该是

detailBackgroundColor.backgroundColor = UIColor(red: 212, green: 142, blue: 69, alpha:  0)