Is it possible to redesign a UITabBarController when clicking on a UITabBarItem?
When starting the app I want to have 5 UITabBarItems:
self.myTabBarController = [CustomTabbarControllerViewController alloc] init];
self.myTabBarController.viewControllers = @[controller1, controller2, controller3, controller4, controller5];
..
When I ll click on controller2 I would like myTabBarController.viewController to contain controllerA, controllerB, controllerC
. controllerA
will bring the previous tabBarController.
I tried to find some examples on the internet, but i couldn t find any.