I was successfully using the AVAudioPlayer class, but after upgrading to iOS 5.0 my iPad app crashes when trying to listen to what I've previously recorded. Under iOS 4.3 all is well.
Here is the code:
NSError * error = NULL;
player =[[AVAudioPlayer alloc] initWithContentsOfURL:
[NSURL fileURLWithPath:destinationString]
error:&error];
if(player == NULL)
NSLog( @"error in creating AVAudioPlayer - %@ %@", [error domain], [error localizedDescription] );
[player prepareToPlay];
player.delegate = self;
[player play];
- (NSString*) documentsPath
{
NSArray *searchPaths =
NSSearchPathForDirectoriesInDomains
(NSDocumentDirectory, NSUserDomainMask, YES);
NSString* _documentsPath = [searchPaths objectAtIndex: 0];
return _documentsPath;
}
-(void) initRecord
{
audioSession = [[AVAudioSession sharedInstance] retain];
[audioSession setCategory:AVAudioSessionCategoryPlayAndRecord error: nil];
[audioSession setActive:YES error:nil];
destinationString = [[self documentsPath]
stringByAppendingPathComponent:@"myRecording.caf"];
NSLog(@"%@", destinationString);
NSURL *destinationURL = [NSURL fileURLWithPath: destinationString];
NSDictionary *settings = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithFloat: 44100.0], AVSampleRateKey,
[NSNumber numberWithInt: kAudioFormatAppleLossless], AVFormatIDKey,
[NSNumber numberWithInt: 1], AVNumberOfChannelsKey,
[NSNumber numberWithInt: AVAudioQualityMax], AVEncoderAudioQualityKey,
nil];
NSError *error;
recorder = [[AVAudioRecorder alloc] initWithURL:destinationURL settings:settings error:&error];
recorder.delegate = self;
}
The app crashes at this line:
player =[[AVAudioPlayer alloc] initWithContentsOfURL:
[NSURLfileURLWithPath:destinationString]
error:NULL];
I've already tried NSZombieEnabled that gives me:
0x5368b0 <myRecording = 005BD7D0 | Tag = -1>
*** -[NSPathStore2 length]: message sent to deallocated instance 0x5290e0