I\'m programming an app in objective c for Iphone/Ipad. I have some items in the \"more\" of the tabbar. I want to switch to one of those views. How can i do it? Normally i woul
[myTabBarController setSelectedViewController: viewControllerThatYouNeed];
Edit:
Try to use selectedViewController property of UITabBarController. From Apple Docs:
Blockquote In iOS 3.0 and later, you can use this property to select any of the view controllers in the viewControllers property. This includes view controllers that are managed by the More navigation controller and whose tab bar items are not visible in the tab bar.