该应用程序播放一些mp3文件并且在iOS 7上运行良好,但在iOS 6或更早版本中,mp3文件无法播放或者至少我什么也听不到。
这是我用来播放mp3的代码:
fileURL = [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/puerta.m4a", [[NSBundle mainBundle] resourcePath]]];
//Initialize the AVAudioPlayer.
self.audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:fileURL error:nil];
// Preloads the buffer and prepares the audio for playing.
[self.audioPlayer prepareToPlay];
self.audioPlayer.currentTime = 0;
[self.audioPlayer play];
有没有人有类似的问题以及如何修复它 - 非常感谢您的帮助。