标签: objective-c uibutton touch
我在按钮的内部触摸上写下这些代码,以增加UILabel中的数字:
int score = [lblScore.text intValue]; score++; lblScore.text = [NSString stringWithFormat:@"%i",score];
我想要触摸并按住按钮,数字会反复添加,直到释放按钮。
答案 0 :(得分:1)
touchUp就会发火。
要执行此操作,您需要在touchDown:内启动循环并在touchUp:内停止
touchDown:
touchUp: