在ios6上运行非常正常的AVAudioRecoder组件,而跑到ios7上就不能工作了。通过google搜索在stackoverflow上的解决方法。http://stackoverflow.com/questions/18922053/avaudiorecorder-avaudioplayer-with-ios-7-not-working-properly
解决方法只需要在使用AVAudioRecoder之前,添加如下代码:
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
[audioSession setCategory:AVAudioSessionCategoryPlayAndRecord error:nil];
[audioSession setActive:YES error:nil];
这样就可以在ios7下正常运行了。