How to pause and resume audio recording using AVAudioRecorder

徘徊边缘 提交于 2019-12-01 05:42:02

问题


I need to pause and then resume an audio recording, I'm using AVAudioRecorder for my recording sessions... Anyone knows how to do this? Any help will be higly appreciated! Thanks a lot Peace Massy


回答1:


After initializing and creating an object of AVAudioRecorder, lets say AVAudioRecorder *recorder, simply call [recorder record] to record and [recorder pause] to pause.

If you are calling record and pause in separate method e.g. on click of different buttons then you need to make recorder a class level variable.




回答2:


To pause the recording, use the following methods on AVAudioRecorder:

- (void)pause

and to resume, use:

- (BOOL)record

It's all here in the docs...



来源:https://stackoverflow.com/questions/11667241/how-to-pause-and-resume-audio-recording-using-avaudiorecorder

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!