Search code examples
iosobjective-cuiviewcontrolleruisplitviewcontrolleruistoryboardsegue

Navigate from Detail view controller out of UISplitViewController to a normal full-sized UIViewController


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.


Solution

  • Show the UIViewController on the UISplitViewController by using method.

    [self presentModalViewController:viewController animated:YES];
    

    Hope this helps.