I have an instance of a MPMoviePlayerController which is being used to display some live streaming video on an iPhone app. This is working fine, however I wish to remove all AirPlay functionality.

To be sure, I specifically disable AirPlay like so:

if([self.moviePlayerController respondsToSelector:@selector(setAllowsAirPlay:)]) {
    self.moviePlayerController.allowsAirPlay = NO;
}

However, even with this code, I still see the AirPlay icon on the video controls. If I select this, and select my AppleTV, only the audio is sent over AirPlay - the video continues to play within the app. If I set allowsAirPlay to YES, both the video & audio are sent over AirPlay.

Does anyone know why this happens? Is this a feature of the OS, to allows allow the audio to be sent over AirPlay?

link|improve this question

did you try to set useApplicationAudioSession = NO; ? – relikd Oct 24 '11 at 16:40
I have now - didn't seem to make any difference I'm afraid. – alku83 Oct 25 '11 at 7:39
Did you set allowsAirPlay before setting the player's content URL? – jbat100 Oct 25 '11 at 8:17
This is a related question stackoverflow.com/questions/5665336/… – jbat100 Oct 25 '11 at 8:20
No, as I'm using the initWithContentURL method to initialise the MPMoviePlayerController. I guess I could try it? – alku83 Oct 25 '11 at 8:40
feedback

1 Answer

up vote 1 down vote accepted

It turns out that the AirPlay icon is still visible (and should remain visible) so that audio can be routed to any suitable device, eg. a Bluetooth headset. Attempting to hide the icon is considered bad practice.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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