gpt4 book ai didi

ios - 我如何在 Sprite Kit 中循环播放音乐?

转载 作者:行者123 更新时间:2023-11-29 02:23:10 25 4
gpt4 key购买 nike

我有一个 8 秒的 mp3 文件,我想将它作为主菜单音乐循环播放。我通过使用 SKAction repeatActionForever 来做到这一点,但是每次它重新开始时,循环之间都会有一个小的停顿。这很烦人,因为这样听起来不像是一首长歌。我怎样才能解决这个问题?

编辑:

它也不适用于 AVAudioPlayer :(

最佳答案

使用 AVAudioPlayer 并将 numberOfLoops 属性设置为 -1 以便无限循环声音。

例如:

NSError *error;
NSURL *soundURL = [[NSBundle mainBundle] URLForResource:@"SomeSound.wav" withExtension:nil];
myPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:soundURL error:&error];
myPlayer.numberOfLoops = -1;
myPlayer.volume = 0.4;
myPlayer.delegate = self;
[myPlayer prepareToPlay];
[myPlayer play];

关于ios - 我如何在 Sprite Kit 中循环播放音乐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27876553/

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