Я пробовал AVAudioPlayer, он не работает.
url= [NSURL fileURLWithPath:[NSString stringWithFormat:@"%@/test.mid", [[NSBundle mainBundle] resourcePath]]];
NSLog(@"URL Description is %@",[url description]);
NSError *error=nil;
AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:&error];
if (error!=nil) {
NSLog(@"Error is %@",[error localizedDescription]);
}
[audioPlayer play];
Я получаю эту ошибку
Error is The operation couldn’t be completed. (OSStatus error 1954115647.)
Должен ли я использовать другой метод для этого?Есть предложения?
Спасибо