I am curious to know if i can develop an app having 2 view controllers .I have gone through some links ,but couldn't find a solution if I'm using storyboard.If i already have a rooviewcontroller,how can i remove it and add another view as rootviewcontroller?Any thoughts?
How can you add 2 rootviewcontrollers in IOS App using storyboard
336 Views Asked by Suraj K Thomas At
2
There are 2 best solutions below
0

At a time there is only one rootviewController in app,
you can replace directly using following,
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
YourVC *rootViewController = [storyboard instantiateViewControllerWithIdentifier:@"YourVC"];
self.window.rootViewController = rootViewController;
in appDelegate Method,
You can do so. You just have to add the code below to the place/action where you want to change the rootViewController.
And make setting of AnotherRootViewController to Storyboard as shown in figure:
Let me know if it satisfy your requirement.