SystemSoundID soundID;Nsstring *path = [[NSBundle mainBundle] pathForResource:@"static" ofType:@"caf"]; AudioServicesCreateSystemSoundID((CFURLRef)[NSURL fileURLWithPath:path],&soundID);AudioServicesPlaySystemSound(soundID);
我在我的应用程序中实现了上面的代码.
它运作完美,但问题是我不知道如何阻止它.
即声音为10秒.
10秒之前如果用户点击按钮,应该停止声音?我怎么能这样做?
解决方法 尝试AudioServicesdisposeSystemSoundID,它立即停止声音.如果您打算再次使用它,则需要重新创建声音. 总结以上是内存溢出为你收集整理的在iPhone中停止声音全部内容,希望文章能够帮你解决在iPhone中停止声音所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)