iOS newbie question here.
I have a UITabBarController as my root controller with a UISplitViewController as a child. I want to storyboard seque(push) from the detail view of the splitviewcontroller to a full screen with the navigation and tab bar(as if the detail view were full screen). I’m guessing this can’t be done from the interface builder and I’ll need some custom code to do this, but I’m not sure where to start looking for how to do this. I’ve looked through apple documentation and can’t find much on the topic. Any help/direction on how to go about this would be appreciated.
Instead of using a UISplitViewController, create your own Container View Controller so that you can remove the master view when needed. Check the documentation for UIViewController under the section titled “Implementing a Container View Controller”.
Another possibility is to use one of the UISplitViewController replacements which allow you to hide the master view even when you are in landscape mode.
MGSplitViewController is one that a lot of people use: Github link