我是iOS编程的初学者。
所以,我想在用户点击按钮时更改文字颜色。
我的代码:
- (IBAction)buttonGetText:(id)sender {
self.textChange.textColor = "red";
}
但它不起作用。我需要做什么? 谢谢大家。
答案 0 :(得分:1)
此:
self.textChange.textColor = "red";
没有意义,您需要使用UIColor
。
试试这个:
self.textChange.textColor = [UIColor redColor];