iOS录音后播放声音变小的解决方法

目前需求是录音之后再播放出来。经常会出现播放声音变很小的情况。

解决方法:

 

if (recorder.recording){
  [recorder stop];   } [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback withOptions:AVAudioSessionCategoryOptionDefaultToSpeaker error:nil];

 

再次录音的时候记得将category改过来

[session setCategory:AVAudioSessionCategoryPlayAndRecord error:nil];

 

 

!!!!如果你在这个点上也有一些疑问请移步

https://www.cnblogs.com/wycstudy/p/10954642.html

这个算是补充完善

posted @ 2018-11-07 18:26  小师傅啊小师傅  阅读(2223)  评论(0编辑  收藏  举报