加载我的应用程序后,有人可以给我快速简单的逐步添加背景m4a音乐的步骤。这是一个Sprite Kit Xcode文件,音乐为m4a格式。谢谢
最佳答案
试试这个:
@import AVFoundation;
...
AVAudioPlayer * backgroundMusicPlayer;
NSError *error;
NSURL * backgroundMusicURL = [[NSBundle mainBundle] URLForResource:@"song" withExtension:@"m4a"];
backgroundMusicPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:backgroundMusicURL error:&error];
backgroundMusicPlayer.numberOfLoops = -1; //-1 = infinite loop
[backgroundMusicPlayer prepareToPlay];
[backgroundMusicPlayer play];
并简单地停下来
[backgroundMusicPlayer stop];
注意:我不使用SKAction播放背景音乐,因为您无法在需要时停止播放它
关于xcode - 如何将背景音乐添加到我的Spritekit文件中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21947117/