有没有一种简单的方法可以为每个 触地事件的按钮添加声音?
因为我的项目中有很多按钮,也许有办法做到这一点。
感谢任何帮助,
谢谢!
Best Answer-推荐答案 strong>
创建覆盖 touchesBegan:withEvent: 方法的 UIButton 子类并让它播放声音。请务必同时调用 [super touchesBegan:touches withEvent:event]; 和 [self.nextResponder touchesBegan:touches withEvent:event]; (我忘了两者是否都需要) 以确保触摸得到传递
关于iphone - 所有触地事件的按钮声音,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11550840/
|