I want to navigate to a UIViewController
out of a UISplitViewController
, when somebody will click on a table cell in the detail View controller.
Setting a segue to an UIViewController
didn't work properly.
How can I exit the UISplitViewController
and show a full-sized UIViewController
and navigate back to the UISplitViewController
?
I want to display some details on the UIViewController
.
Show the UIViewController on the UISplitViewController by using method.
[self presentModalViewController:viewController animated:YES];
Hope this helps.