我有一个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/

10-11 19:52