I'm trying to record the voice of the user using AVAudioRecorder class. First of all I set the AudioSession
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
NSError *error;
if ([audioSession inputIsAvailable]) {
[audioSession setCategory:AVAudioSessionCategoryPlayAndRecord error:&error];
}
The value of audioSession.inputIsAvailable is always NO for my 2nd Gen iPod Touch. Why does it happen? Is not possible to record with this device? Or does it depend on the OS?