用户触摸按钮后我喜欢按住(突出显示)。
我试图在touch-up事件处理程序中设置突出显示的属性,但它不起作用。 (我想在调用event-handler之后,被突出显示的属性没有被apple代码设置。)
答案 0 :(得分:2)
改为使用“selected”状态属性。
- (IBAction)theButtonTapped:(id)sender
{
UIButton *button = (UIButton *)sender;
button.selected = !button.selected;
}