为iOS游戏播放背景音乐的最佳方式是什么?我该怎么做?
播放音乐文件的最佳格式是什么?
这首歌是否会在整个游戏中愉快地播放,改变视野时不会中断?
如何循环播放此音乐?
答案 0 :(得分:36)
您可以使用AVAudioPlayer
:
NSString *soundFilePath = [[NSBundle mainBundle] pathForResource:@"mySound" ofType:@"mp3"];
NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];
AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFileURL error:nil];
player.numberOfLoops = -1; //infinite
[player play];
您可以通过设置currentTime
:
player.currentTime = 10; //jump to 10th second