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
I need to pause and then resume an audio recording, I’m using AVAudioRecorder for
Share
After initializing and creating an object of
AVAudioRecorder, lets sayAVAudioRecorder *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
recordera class level variable.