views:

69

answers:

1

Hi All,

I am using AudioQueue for recording voice. I want to know how can we pause the recording ?

Thanks

+2  A: 

Well, there is:

AudioQueuePause(audioQueue);

where audioQueue is the reference to your AudioQueue. For more information, check out the Audio Queue Services Reference for iPhone or Mac OSX.

rcw3