目标是在单击 UIButton 时更改我的 UITextView 的字体颜色和背景颜色,然后在再次单击 UIButton 时将它们恢复为原始颜色;然后重复,等等。
默认颜色设置
- 文本:
blackColor
- 背景:
lightGrayColor
单击按钮后(更改为..)
- 文本:
greenColor
- 背景:
blackColor
(然后如果再次单击,更改回默认颜色设置)
到目前为止,我有这个:
- (IBAction) enableSleepMode:(id)sender {
[txtNotes setTextColor:[UIColor greenColor]];
[txtNotes setBackgroundColor:[UIColor blackColor]];
}
我很抱歉,但我不确定从这里去哪里。提前致谢。