为我的iOS游戏播放背景音乐的最佳方式是什么?我该怎么做? 将音乐文件用于播放的最佳格式是什么? 这首歌是否会在整个游戏中愉快地播放,改变观看时不会中断? 我怎样才能循环播
>将音乐文件用于播放的最佳格式是什么?
>这首歌是否会在整个游戏中愉快地播放,改变观看时不会中断?
>我怎样才能循环播放这些音乐? 您可以使用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