作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用 AVAudioPlayer 时遇到问题,我想重置当前正在播放的播放器并再次播放。
我尝试了以下方法,但没有成功:
声音播放一次,但第二次我选择按钮时它停止声音,第三次再次启动声音。
//Stop the player and restart it
if (player.playing) {
NSLog(@"Reset sound: %@", selectedSound);
[player stop];
[player play];
} else {
NSLog(@"playSound: %@", selectedSound);
[player play];
}
我还尝试过使用player.currentTime = 0,这表明将重置播放器,但这不起作用,我也尝试重置currentTime = 0,然后调用play,但不起作用。
//Stop the player and restart it
if (player.playing) {
NSLog(@"Reset sound: %@", selectedSound);
player.currentTime = 0;
[player play];
} else {
NSLog(@"playSound: %@", selectedSound);
[player play];
}
最佳答案
针对您的情况,我会尝试以下方法
//Pause the player and restart it
if (player.playing) {
NSLog(@"Reset sound: %@", selectedSound);
[player pause];
}
player.currentTime = 0;
[player play];
如果您要立即再次播放声音,我建议暂停而不是停止。调用 stop“停止播放并撤消播放所需的设置。”
关于iphone - AVAudioPlayer 重置当前播放的声音并从头开始播放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1161148/
我需要用这样的数据构建一个表: ┌────────┬───────────┬────────┐ │ ID │ Name │ Age │ ├────
我是一名优秀的程序员,十分优秀!