Is it possible to segue from one storyboard to another, or to embed a storyboard in a view controller in another storyboard? I need to place a UITabBarController in a UINavigationController, and I'd like to keep them nice and separate.
|
|
||||
|
|
|
Yes, but you have to do it programatically:
|
|||||||||||||||||||||
|
|
You can't really do segues manually because UIStoryboardSegue is an abstract class. You need to subclass it and implement
One thing to note, though, is that you've said you want to keep things nice and separate. The idea of storyboards is to allow you to keep things separate while doing all of your design work in one place. Each view controller is nice and separated within the storyboard from the others. The whole idea is to keep it all in one place. Just lay it out nicely so that it's organized, and you'll be good to go. You shouldn't separate it unless you have a really good reason to do so. |
|||||||||||||||
|
|
You should not place UITabBarControllers in a UINavigationController. It's asking for bugs such as incorrect autorotation/view unloading etc., as Apple doesn't support this sort of containment:
|
|||||
|
|
did you try the following : 2/ click to select your view controller which is linked to your navigation controller and in top menu : editor -> embed in -> Tab Bar controller Note : I didn't test it because I'm using the opposite : making tabbed bar apps and puting navigation controller inside). |
|||
|
|