I have a Main Storyboard
which initial ViewController
is a UITabBarController
, one of the tabbed controllers branches in plenty controllers, so I've moved all of them to a whole different Storyboard
.
So far I've set a custom UINavigationController
into the appropriate tab in my MainStoryboard, and in its viewDidLoad
method I programmatically set its root UIViewController
loading it from the new Storyboard
.
It works, but my question is:
Is there anyway to achieve this directly from Interface builder
, with a segue
that somehow links both Storyboards
?