当按下我的应用程序上的按钮时,我的代码会向上计数,但是我也想在按下按钮时更改按钮的背景颜色。
我可以简单地在下面的代码中添加backgroundColor
吗?
- (IBAction)buttonPressed {
count++;
totalLabel.text = [NSString stringWithFormat:@"Hours\n%li",(long)count];
}
@end
答案 0 :(得分:1)
不确定。最简单的方法是更改您的IBAction,以便它接收已被点击的按钮。
-(IBAction)buttonPressed:(UIButton*)button {
button.backgroundColor = [UIColor redColor];
}
(你还需要重新连接笔尖的插座,这样它就知道新的选择器是buttonPressed:,而不仅仅是buttonPressed。