I am trying to split up my Storyboard as it has become painful to work with and I need to have some separation for organizational purposes.
I am using ECSlidingViewController as a main navigation menu. It has been working great. But now that I would like to segue to a new storyboard I am having difficulty.
I have tried a couple of methods.
I feel I may need to create my own sliding navigation menu but I wanted to see if anyone has some helpful insight on this issue. Thanks for any help.
I would do it like this
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"storyB" bundle:nil];
self.slidingViewController.topViewController = [storyboard instantiateViewControllerWithIdentifier:@"storyboardId"];
[self.slidingViewController resetTopViewAnimated:YES];