更改UIButton中标题的背景颜色

问题描述 投票:0回答:3

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

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

任何的想法 ?

ios swift uibutton uibackgroundcolor
3个回答
4
投票

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

btn.titleLabel?.backgroundColor = UIColor.red

0
投票

完整的答案是:

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

-1
投票

要更改按钮标题颜色:

btn.setTitleColor(UIColor.yourColor, for: .normal)
© www.soinside.com 2019 - 2024. All rights reserved.