当前位置 : 主页 > 手机开发 > ios >

ios – 循环背景音乐?

来源:互联网 收集:自由互联 发布时间:2021-06-11
为我的iOS游戏播放背景音乐的最佳方式是什么?我该怎么做? 将音乐文件用于播放的最佳格式是什么? 这首歌是否会在整个游戏中愉快地播放,改变观看时不会中断? 我怎样才能循环播
>为我的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
网友评论