My project has many tabs. Each tab is implemented using xib files. For one particular view controller I want to use storyboard. I am relatively new to the storyboards and wanted to know how to specify the entry point for the storyboard.
My current code looks like this.
- (UIViewController *)viewControllerForTabDocs {
DocsViewController *vc = [[DocsViewController alloc] init];
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];
return nav;
}
You should try the followings