How do I push a view control over a UISPlitViewController? Or How do I get the parent UIViewController of the UISplitViewController?
What I want to do is when a user clicks on a button a UiViewController will take up the enter ipad view.
I currently have this hierarchy:
Window
UISplitViewController
I want to push a new UIController to take up or replace the UISplitViewController
Show your view controller from a view controller using
presentModalViewController:animated:and it will by default cover up the entire screen and animate from bottom to top if you pass YES for animated.