avaudioplayer 播放歌曲

发布于 2024-10-21 13:48:27 字数 194 浏览 1 评论 0原文

我创建了实例 AVAudioPlayer 但该实例仅工作一次,就像我

if(a.playing)
{
    i=1
}
else
{
     i=2
} 

在播放时第一次给出 i=1 以及其他时候给出 i=2 一样玩的时候。

I created instance AVAudioPlayer but the instance is working only once like if I give

if(a.playing)
{
    i=1
}
else
{
     i=2
} 

for 1st time its giving i=1 while playing and other times its giving i=2 while playing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世俗缘 2024-10-28 13:48:27

AVAudioPlayer参考参考明确提到了这一点关于playing 属性

重要提示:请勿轮询此属性(即,不要在循环内使用它)来尝试发现播放何时停止。
也许你可以尝试[audioPlayer isPlaying];

AVAudioPlayer reference Reference clearly mentions this about the playing property

Important: Do not poll this property (that is, do not use it inside of a loop) in an attempt to discover when playback has stopped.
Perhaps u can try [audioPlayer isPlaying];

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文