如何在Xcode 10中以编程方式更改按钮的背景色?

时间:2018-12-18 04:59:51

标签: xcode10

我正在运行Xcode 10和Swift 4,并且试图通过代码更改按钮的背景颜色。这是我尝试过的结果以及导致的错误。

enter image description here

2 个答案:

答案 0 :(得分:0)

无论您使用的backgroundColor属性不是UIButton,它都是获取UIButton并返回Void的函数,因此请找出错误并在UIButton对象上调用backgroundColor。

答案 1 :(得分:0)

它应该可以工作,但是仍然可以这样尝试:

 @IBOutlet weak var selectAllBtn: UIButton!

    self.selectAllBtn.backgroundColor = .blue

p.s 看看按钮是否设置在这里