I am recording the audio using AVAudioRecorder. I am using the below code :
[[AVAudioRecorder alloc] initWithURL:outputFileURL settings:recordSetting error:NULL];
I want to know If I pass recordSetting as nil, then what is the default record setting which this Recorder use. I mean what will be the values of AVFormatIDKey, AVSampleRateKey, AVEncoderBitRateKey, AVNumberOfChannelsKey and AVAudioQualityMax if we pass in settings parameter as nil.
I need the default values of these keys.
I would appreciate any help.