Deprecated: trim(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/html/extensions/Variables/includes/ExtVariables.php on line 198
MPAudioVideoRoutingTableViewController: Difference between revisions - iPhone Development Wiki

MPAudioVideoRoutingTableViewController: Difference between revisions

From iPhone Development Wiki
(Initial (brief) description)
 
m (adding navbox)
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
[[MPAudioVideoRoutingTableViewController]] is a [[UITableViewController]] subclass which takes the number of available 'routes' the audio can be sent through and presents them as options to the user. In other words it is the Airplay options screen you see after pressing the Airplay button).
[[MPAudioVideoRoutingTableViewController]] is a [[UITableViewController]] subclass which takes the number of available 'routes' the audio can be sent through and presents them as options to the user. In other words it is the Airplay options screen you see after pressing the Airplay button).


== Usage ==
== Usage ==
Line 7: Line 6:
On the iPad the it is shown using a [[MPAudioVideoRoutingPopoverController]] in an on screen [[UIPopoverController]].
On the iPad the it is shown using a [[MPAudioVideoRoutingPopoverController]] in an on screen [[UIPopoverController]].


{{occlass|library=MediaPlayer.framework|navbox=1}}


== References ==
== References ==
 
* Header: https://github.com/nst/iOS-Runtime-Headers/blob/master/Frameworks/MediaPlayer.framework/MPAudioVideoRoutingTableViewController.h
https://github.com/nst/iOS-Runtime-Headers/blob/master/Frameworks/MediaPlayer.framework/MPAudioVideoRoutingTableViewController.h

Latest revision as of 18:36, 22 May 2014

MPAudioVideoRoutingTableViewController is a UITableViewController subclass which takes the number of available 'routes' the audio can be sent through and presents them as options to the user. In other words it is the Airplay options screen you see after pressing the Airplay button).

Usage

I believe, but have not fully tested, that the MPAudioVideoRoutingTableViewController is never used directly but rather through 2 other classes. On the iPhone MPAudioVideoRoutingViewController is shown fully screen. On the iPad the it is shown using a MPAudioVideoRoutingPopoverController in an on screen UIPopoverController.


References