我想要一个 UIButton 像这样工作:首先单击它,运行 start_method;其次点击它,运行stop_method;单击它第三次再次运行 start_method;第四次单击它,再次运行 stop_method。这样的循环。
当我设置按钮时:
[button addTarget:self action:@selector(start_method:) forControlEvents:UIControlEventTouchDown];
[button addTarget:self action:@selector(stop_method:) forControlEvents:UIControlEventTouchDownRepeat];
每当您单击它时,它都会响应这两个操作。
有什么建议么?