怎么获取 UIButton 在 normal 和 selected 状态下的 TitleColor


先创建一个 UIButton ,然后给它设置 UIControlStateNormal UIControlStateSelected 状态下的颜色

代码如下:


 [sampleBtn setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
[sampleBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateSelected];

然后我想在别处获取到这个按钮在这两个状态下的颜色值,请问如何获取

开发 ios xcode

MIPA001 9 years, 6 months ago

 [sampleBtn titleColorForState:state];

爆肝女青年A answered 9 years, 6 months ago

Your Answer