I observer the notification of UIApplicationWillResignActiveNotification,then stop the recorder,then keyboard no sound.
who can help me?
Thank you!!!!!
[[NSNotificationCenter defaultCenter] addObserver:recorder
selector:@selector(stop)
name:UIApplicationWillResignActiveNotification
object:nil];
//
// Record stop
- (void)stop
{
NSLog(@"recorder stop");
if (recordState.recording == YES)
{
@synchronized(self)
{
OSStatus error;
error = AudioQueueFlush(recordState.queue);
if (error)
{
NSLog(@"AudioQueueStop failed:%d",error);
}
error = AudioQueueStop(recordState.queue, YES);
if (error)
{
NSLog(@"AudioQueueStop failed:%d",error);
}
recordState.recording = NO;
SetMagicCookieForFile(recordState.queue, recordState.audioFile);
for(int i = 0; i < NUM_BUFFERS; i++)
{
error = AudioQueueFreeBuffer(recordState.queue,
recordState.buffers[i]);
if (error)
{
NSLog(@"AudioQueueFreeBuffer failed:%d",error);
}
recordState.buffers[i] = nil;
}
error = AudioQueueDispose(recordState.queue, YES);
if (error)
{
NSLog(@"AudioQueueDispose failed:%lli",error);
}
recordState.queue = nil;
error = AudioFileClose(recordState.audioFile);
if (error)
{
NSLog(@"AudioFileClose failed:%lli",error);
}
recordState.audioFile = nil;
if(recordState.audioLevels)
{
free(recordState.audioLevels);
recordState.audioLevels = NULL;
}
NSLog(@"AudioQueueReset...");
error = AudioQueueReset(recordState.queue);
if (error)
{
NSLog(@"AudioQueueReset failed:%lli",error);
}
NSLog(@"AudioSessionSetActive false...");
error = AudioSessionSetActive(false);
if (error)
{
NSLog(@"AudioSessionSetActive (false) failed:%d",error);
}
}
}
}