While testing my application for iOS5, I noticed that my listener for kAudioSessionProperty_AudioRouteChange isn't called anymore when using the hardware mute switch, although it is called when plugging speakers. Is this an iOS5 bug, or has something changed regarding this ?

For the record, here's the code I'm using:

AudioSessionInitialize(nil, nil, nil, nil);
AudioSessionSetActive(YES);
AudioSessionAddPropertyListener(kAudioSessionProperty_AudioRouteChange, muteListener, self);

And my listener:

void muteListener (void *inClientData, AudioSessionPropertyID inID, UInt32 inDataSize, const void *inData) {
    NSLog("mute changed");
    //...
}

Note: testing with an iPhone 3GS with iOS5

link|improve this question
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.