4.3 finally :) I am searching right now how to add air play button to custom view. I have MPMoviePlayer that load movie. I disabled standard controls and added overlay view with my custom play, pause, stop, volume buttons. If anybody know how to add button that will be air play please share knowledge? I cant't find what notification to send, what to listen...:(

link|improve this question

Finally found a way to do it. I've edited my answer. Hope that helps. – Jilouc Mar 16 '11 at 11:23
feedback

3 Answers

up vote 7 down vote accepted

EDIT It seems I've been misguided in my previous answer because the device was not running the released version iOS 4.3.

There is a way to provide the AirPlay button on a custom interface.
Use a MPVolumeView and add it to your view hierarchy

MPVolumeView *myVolumeView =
[[MPVolumeView alloc] initWithFrame: overlayView.bounds];
[overlayView addSubview: myVolumeView];
[myVolumeView release];

The MPVolumeView provides the volume slider and the route button (see image below). But I don't think it's possible to only display the button.

MPVolumeView at the bottom

link|improve this answer
I don't have AppleTV with me now but I will test it as soon as I can. I can't wait to see this feature :) There is explanation also here developer.apple.com/library/ios/#documentation/mediaplayer/… about VolumeView. Thanks – 1110 Mar 17 '11 at 7:21
it doesn't work for me. the button is shown, but doesn't do anything when I click AppleTV button. Any ideas? – Tibidabo Jul 8 '11 at 14:46
Remember to add 'MediaPlayer.framework' in Project's Build Phases under 'Link Binary With Libraries' section. Otherwise you will see just blank view. – Kashif Hisam Sep 29 '11 at 10:37
feedback

If you want just the AirPlay button without the volume slider follow the instructions in Jilouc's answer and then set the following properties on the myVolumeView:

[myVolumeView setShowsVolumeSlider:NO];
[myVolumeView setShowsRouteButton:YES];

That will hide the volume slider but keep the route button.

link|improve this answer
feedback

You probably should read this doc for a start.

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.