从(iPhone) 我可以使用调度程序执行 AudioServicesPlaySystemSound 循环吗?
MPMusicPlayerController 不起作用,因为它是关于 iPod 音乐库的,我无法向其中添加音乐文件,因为我正在玩 iPhone 游戏并且不与外部 iPod 库交互。
AVAudioPlayer 可以在 iPhoneSimulator 中使用吗?
从(iPhone) 我可以使用调度程序执行 AudioServicesPlaySystemSound 循环吗?
MPMusicPlayerController 不起作用,因为它是关于 iPod 音乐库的,我无法向其中添加音乐文件,因为我正在玩 iPhone 游戏并且不与外部 iPod 库交互。
AVAudioPlayer 可以在 iPhoneSimulator 中使用吗?
查看以下代码,它是一个简单的 AVAudioPlayer 示例以及它在 iPhone 模拟器上的工作。
AVAudioPlayer *audioPlayer;
NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/azan1.mp3", [[NSBundle mainBundle] resourcePath]]];
NSError *error;
audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
audioPlayer.numberOfLoops = -1;
[audioPlayer play];