在iPhone中停止声音

在iPhone中停止声音,第1张

概述SystemSoundID soundID;NSString *path = [[NSBundle mainBundle] pathForResource:@"static" ofType:@"caf"]; AudioServicesCreateSystemSoundID((CFURLRef)[NSURL fileURLWithPath:path], &soundID);AudioServi
SystemSoundID soundID;Nsstring *path = [[NSBundle mainBundle] pathForResource:@"static" ofType:@"caf"]; AudioServicesCreateSystemSoundID((CFURLRef)[NSURL fileURLWithPath:path],&soundID);AudioServicesPlaySystemSound(soundID);

我在我的应用程序中实现了上面的代码.

它运作完美,但问题是我不知道如何阻止它.

声音为10秒.

10秒之前如果用户点击按钮,应该停止声音?我怎么能这样做?

解决方法 尝试AudioServicesdisposeSystemSoundID,它立即停止声音.如果您打算再次使用它,则需要重新创建声音. 总结

以上是内存溢出为你收集整理的在iPhone中停止声音全部内容,希望文章能够帮你解决在iPhone中停止声音所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1016981.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-23
下一篇 2022-05-23

发表评论

登录后才能评论

评论列表(0条)

保存