I’m making a VoIP app for iPhone. It’s required to to forbid any form of audio recording for security reason. Is it possible to do so? If so, how to do it? Thanks a lot!
Edit: The app is not for jailbroken iPhones. However, private frameworks are permissible.
in your .h file –
In you .m file –
The last line
[audioRecorder stop]is going to make sure the audio recording is stopped. You can do something similar to your app..