我想在UIButton中更改标题的背景颜色(仅限!),其中包含标题和图像。
我只能看到如何更改整个按钮的背景颜色,这不是我想要的。
任何的想法 ?
你需要设置titleLabel的背景颜色:
btn.titleLabel?.backgroundColor = UIColor.red
完整的答案是:
btn.tintColor = UIColor.clear (if we have different tint, which I had) +
btn.titleLabel?.backgroundColor = UIColor.clear
要更改按钮标题颜色:
btn.setTitleColor(UIColor.yourColor, for: .normal)