我需要制作一个带有两个动作的按钮,触摸用于播放声音,然后在内部触摸以在您松开按钮时停止播放声音
答案 0 :(得分:3)
将两种方法连接到这两个操作。
[self.yourBtn addTarget:self action:@selector(touchDownMethod:) forControlEvents:UIControlEventTouchDown];
[self.yourBtn addTarget:self action:@selector(touchUpInsideMethod:) forControlEvents:UIControlEventTouchUpInside];