I'm trying to detect user input (a click) on the headphones connected to an iPhone. So far I've only found how to detect interruptions using AVAudioSession. Is AVAudioSession right or is there another way? how?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You want this:

beginReceivingRemoteControlEvents

You implement something this in one of your VCs classes:

 // If using a nonmixable audio session category, as this app does, you must activate reception of 
//    remote-control events to allow reactivation of the audio session when running in the background.
//    Also, to receive remote-control events, the app must be eligible to become the first responder.
- (void) viewDidAppear: (BOOL) animated {

    [super viewDidAppear: animated];
    [[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
    [self becomeFirstResponder];
}

- (BOOL) canBecomeFirstResponder {

    return YES;
}


    // Respond to remote control events

- (void) remoteControlReceivedWithEvent: (UIEvent *) receivedEvent {

    if (receivedEvent.type == UIEventTypeRemoteControl) {

        switch (receivedEvent.subtype) {

            case UIEventSubtypeRemoteControlTogglePlayPause:
                [self playOrStop: nil];
                break;

            default:
                break;
        }
    }
}

See the sample code here.

link|improve this answer
For some reason this isn't working. I read maybe you have to initialize an AVAudioSession? Don't really know, I'm trying to make this work but is failing. – jglievano Oct 25 '11 at 21:21
Download the sample code, see if it works for you. Then double check that your VC has those methods I posted. If it isn't in the responder chain it won't get notifications. – logancautrell Oct 25 '11 at 21:24
actually the sample code doesn't work either. I mean, you have to press play in order for the headset buttons to work first. – jglievano Oct 25 '11 at 22:52
I managed to make it work, I did have to start playing some music tho. – jglievano Oct 26 '11 at 0:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.