gpt4 book ai didi

iphone - AVAudioPlayer 重置当前播放的声音并从头开始播放

转载 作者:行者123 更新时间:2023-12-03 18:21:55 34 4
gpt4 key购买 nike

我在使用 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/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com