I am new to Storyboard-ing, been using IB mostly. I have an initial temporary View Controller (let's call it BootstrapViewController) which job is solely to load data from a webservice, then hand over control to a UITabViewController. The data is required to determine what tab items to show.
In non-Storyboard world, I just do:
// Do whatever you need to UITabViewController, then call this
[UIApplication sharedApplication].keyWindow.rootViewController = myTabVC;
Is this possible using Storyboard? I tried creating a named segue from BootstrapViewController to the tab view controller, then calling performSegueWithIdentifier, no luck.
BootstrapViewControllerout of the Storyboard, load it first, then manually load the MainStoryBoard?performSegueWithIdentifier