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
UISplitViewController - iPhone Development Wiki

UISplitViewController

From iPhone Development Wiki
Revision as of 17:45, 13 April 2010 by KennyTM~ (talk | contribs) (Created page with 'UISplitViewController is for displaying 2 view controllers together. It should only be used for the iPad. == Showing the Master Controller in Portrait Mode == {{function si…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

UISplitViewController is for displaying 2 view controllers together. It should only be used for the iPad.

Showing the Master Controller in Portrait Mode

Signature @property(assign,nonatomic) BOOL hidesMasterViewInPortrait;
Available in 3.2 —

By default the master (left) controller is hidden in a pop-over in portrait mode. To make it appear in portrait mode too, one needs to set this property to YES.

This is the mechanism used in Preferences.

References