Is it possible to check the record permission status (if it is granted or not) without initiating standard iOS request flow?
For example, if I would like to know if record permission is granted, but without calling -requestRecordPermission
on [AVAudioSession sharedInstance]
which will make iOS present prompt to the user about allowing access to the microphone.
I am looking something similar to the CLLocationManager's authorizationStatus kCLAuthorizationStatusNotDetermined
Thanks