我在试图利用AVAudioPlayer玩一个剪辑。 错误给我:
这一行动无法完成。 (OSStatus差错——50)
I have no idea. The frameworks are all there etc...
这是否与《欧洲刑法》有关?
我的守则如下:
NSString *soundFilePath = [[NSBundle mainBundle] pathForResource:@"grunt" ofType:@"aiff"];
NSURL *fileURL = [NSURL URLWithString:soundFilePath];
NSError *error;
audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:fileURL error:&error];
if(!error){
audioPlayer.delegate = self;
[audioPlayer play];
}else{
NSLog(@"Error loading clip: %@", [error localizedDescription]);
}
提前感谢!