I started developing my app with a TabBarController but I recently realized the use of authenticating the user before accessing the app. So I created a login page before TabBarContoller(2 tabs and 2 views). But now I am not able to push the controller from ViewController to TabBarController. What, I have tried so far is: (After the user taps the submit button on login page):
UIStoryboard* sb = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController* vc = [sb instantiateViewControllerWithIdentifier:@"twoOptions"];
[self.navigationController pushViewController:vc animated:YES];
Here, twoOptions is the identifier I have named in the Interface Builder for the TabBarController in StoryBoard
Please guide me
I went through the following link: ViewController to TabBarController but still did not understand what needs to be done. I am unable to push the view