我正在应用程序中播放声音文件,而在 iPhone 上播放的音量就像打电话一样(您必须将手机放在耳边)。当在 iPad 上播放时,它会像您期望的那样播放,听起来就像正在播放的音乐文件。有谁知道如何让 iPhone 播放音乐的声音?
这是我用来播放声音的:
NSURL *url = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/30perMinute2.caf", [[NSBundle mainBundle] resourcePath]]];
NSError *error;
audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
audioPlayer.numberOfLoops = -1;
if (audioPlayer == nil)
NSLog(@"selection didn't work");
else {
// [audioPlayer stop];
[audioPlayer play];
}
我已将音量设置在audioPlayer
.