I have a storyboard with a ViewController, embedded into NavigatonController (so the Storyboard shows one box with an arrow to another).
If I create my ViewController,
[storyboard instantiateInitialViewController:@"viewControllerID"]
it works, but the View is not within the NavController
If I create the Nav Controller from StoryBoard:
[storyboard instantiateInitialViewController:@"NavControllerID"]
I get an empty Navigationcontroller, without View.
How to achieve both?