For navigation in my application I use UITabBarController. This works great, but in one of my view controllers, I want to click another view controller in the view on the panel. In other words, I want to replace the selected viewcontroller with another. I am doing this with the following code:
self.tabBarController.selectedViewController = self.otherViewController;
The viewControllers list in my TabBarController does not contain otherViewController. This trick works great on iOS 4.3, but he doesn't like iOS 5.
Does anyone know the decision made by iOS 5?
Aron K.
source share