我是 iPhone 的初学者。我想播放音频。为此我使用了 AVAudioPlayer.. 但该对象返回空值.. 并且还给出了操作无法完成的运行时错误。(OSStatus 错误 -43。)
这是我使用的代码
-(IBAction)sound
{
NSError *error;
int currentsound;
path=[[NSBundle mainBundle] pathForResource:@"Animalfile" ofType:@"plist"];
dict=[NSDictionary dictionaryWithContentsOfFile:path];
animalaudio=[dict valueForKey:@"audio"];
NSLog(@"print:%@",dict);
NSLog(@"printanimal%@",animalaudio);
audiolist=[animalaudio objectAtIndex:currentsound];
NSLog(@"audiolist:%@",audiolist);
url=[NSURL fileURLWithPath:audiolist];
NSLog(@"url:%@",url);
audioplayer=[[AVAudioPlayer alloc]initWithContentsOfURL:url error:&error];
NSLog(@"audioplayer:%@",audioplayer);
if( audioplayer == nil ){
NSLog(@"Failed with reason: %@", [error localizedDescription]);
}
else{
[audioplayer play];
}
}
在那个 url 中还返回 mp3 文件,但是为什么 url 不传入 AVAudioPlayer,因为 audioplayer 返回 null 但不返回 mp3 file.so,我在 AVAudioPlayer 中编写的代码是什么?给出任何建议和源代码....