我有一个UIButton
,它有一个预设的文本字体和颜色,我需要在点击点击按钮时立即改变它。
我尝试:
- (IBAction)tapAction : (id)sender
{
// determine button from tag ..
[crtBtn setTitleColor:self.selectedTextColor forState:UIControlStateSelected];
[crtBtn setTitleColor:self.selectedTextColor forState:UIControlStateNormal];
[crtBtn setTitleColor:self.selectedTextColor forState:UIControlStateApplication];
[crtBtn setTitleColor:self.selectedTextColor forState:UIControlStateHighlighted];
[crtBtn setNeedsDisplay];
}
任何想法如何解决这一问题?