As we known, IOS 9 support split view mode. Is there any API that can bring spilt view mode to full view mode?
Asked
Active
Viewed 30 times
1 Answers
0
If you want to do this in any method/button action, use following code
self.splitViewController.preferredDisplayMode = UISplitViewControllerDisplayModePrimaryHidden;

Johnykutty
- 12,091
- 13
- 59
- 100
-
Not UISplitViewController, It's split view mode in IOS 9. Thanks the same. – Robin You Feb 15 '16 at 07:56