标签: swift uicolor
当用户选择时,有人可以帮助我更改文字颜色。就像我在一个viewcontroller上有三个按钮,当用户点击1个按钮时,它变为白色,其余两个变为灰色。
答案 0 :(得分:3)
您需要使用setTitleColor(_:forState:)。
setTitleColor(_:forState:)
// Setting the color for a button's disabled state to red button.setTitleColor(UIColor.redColor(), forState: .Disabled)
UIButton Class Reference