如何在ios7中使用AudioServicesPlaySystemSound停止播放声音



我正在使用AudioServicesPlaySystemSound在我的应用程序中播放自定义声音,当我触摸任何按钮时,我如何能立即停止声音。目前我正在使用下面的代码来停止声音,但它的工作不太好

SystemSoundID soundID;
AudioServicesRemoveSystemSoundCompletion (soundID);
AudioServicesDisposeSystemSoundID(soundID); 

代替使用System Sound Services,您可以使用AVAudioPlayer,它不需要任何外部支持库,总体上易于实现。

最新更新