I know the UISplitViewController can only be used as the root controller. but is it possible to go from a split view to another split view?
like load the detail and master views with different data and layout?
I know the UISplitViewController can only be used as the root controller. but is it possible to go from a split view to another split view?
like load the detail and master views with different data and layout?
It isn't a segue per se, but it does change out the view controller for another:
AppDelegate *app = (AppDelegate *)[[UIApplication sharedApplication] delegate];
app.window.rootViewController = [self.storyboard instantiateViewControllerWithIdentifier:@"HomeViewController"];
where @"HomeViewController" is the Storyboard ID of the UISplitViewController on your storyboard.