Show TabBarController
are user navigation
from another UIViewController
.
UIStoryboard *storyBoard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
CategoryViewController *categoryViewController = [storyBoard instantiateViewControllerWithIdentifier:@"CategoryViewController"];
[self.tabBarController.navigationController pushViewController:categoryViewController animated:YES];
After navigating from UITabBarController
to another UIViewController
class i.e., CategoryViewController
the tabbarcontroller
disappears, I want to show the UITabBarController
even its navigate to another controller
.