该应用程序播放一些 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];
有没有人有类似的问题以及如何解决它 - 非常感谢您的帮助。