如何让iPhone按钮保持按下状态?

时间:2011-03-26 20:19:34

标签: iphone cocoa-touch ios

用户触摸按钮后我喜欢按住(突出显示)。

我试图在touch-up事件处理程序中设置突出显示的属性,但它不起作用。 (我想在调用event-handler之后,被突出显示的属性没有被apple代码设置。)

1 个答案:

答案 0 :(得分:2)

改为使用“selected”状态属性。

- (IBAction)theButtonTapped:(id)sender
{
    UIButton *button = (UIButton *)sender;
    button.selected = !button.selected;
}