Hi there i am using the following snippet of the code.
NSString *path = [[NSBundle mainBundle]pathForResource:@"mtgcko" ofType:@"caf"];
[audioPlayer initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
audioPlayer.delegate = self;
[audioPlayer play];
It should work but on my device and simulator I receive the following error :
Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[NSURL initFileURLWithPath:]: nil string parameter'
but the file I'm calling in the NSURL exist in MainBundle.
Thank you for your help. Don't have any idea where could be the problem. I read in some articles on web that the problem could be in codecs? But this seems not to be, because I am able to play all other formats including aiif, mp3, wav ...
Thanks for advices.:-)
path, the file may not exist in that location. – sooper May 31 '12 at 18:50