AVPlayer可以放置MP3文件吗?
它没有在Apple文档中列出MP3。
答案 0 :(得分:3)
你尝试使用
吗? [[AVAudioPlayer alloc]initWithContentsOfURL:fileUrl error:nil];
播放文件
答案 1 :(得分:2)
答案 2 :(得分:1)
这是一个完整的样本。
myClass.h:
- @interface myClass : NSObject \<AVAudioPlayerDelegate\> ...
myClass.m:
localPlayer = [[AVAudioPlayer alloc]
initWithContentsOfURL:newAudioURL error:nil]; [localPlayer
setDelegate:self];
- (void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)playedPlayer successfully:(BOOL)flag {
NSLog(@"releasing");
[playedPlayer release];
NSLog(@"released"); }