选定的按钮颜色更改

时间:2015-08-27 03:13:02

标签: swift uicolor

当用户选择时,有人可以帮助我更改文字颜色。就像我在一个viewcontroller上有三个按钮,当用户点击1个按钮时,它变为白色,其余两个变为灰色。

1 个答案:

答案 0 :(得分:3)

您需要使用setTitleColor(_:forState:)

// Setting the color for a button's disabled state to red

button.setTitleColor(UIColor.redColor(), forState: .Disabled)

UIButton Class Reference