avaudioplayer 播放歌曲
我创建了实例 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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];