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?

link|improve this question

78% accept rate
1  
When I insert the headphones in the iPod inputIsAvailable = YES and the recording works!! – nano Jan 31 at 15:24
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.