在UIButton

时间:2018-02-26 09:53:59

标签: ios swift uibutton uibackgroundcolor

我想在UIButton中更改标题的背景颜色(仅限!),其中包含标题和图像。

我只能看到如何更改整个按钮的背景颜色,这不是我想要的。

有什么想法吗?

3 个答案:

答案 0 :(得分:4)

您需要设置titleLabel的背景颜色:

contains

答案 1 :(得分:0)

完整的答案是:

btn.tintColor = UIColor.clear (if we have different tint, which I had) + 
btn.titleLabel?.backgroundColor = UIColor.clear

答案 2 :(得分:-1)

更改按钮标题颜色:

btn.setTitleColor(UIColor.yourColor, for: .normal)