How can I switch to some tab in UITabBarController
using StoryBoard? I have tried the code below but without success (the tab is not selected):
This will work in stroryboard too...
[self.tabBarController setSelectedIndex:3];
with this add UITabBarControllerDelegate
in .h
and then use this delegate
method
- (BOOL)tabBarController:(UITabBarController *)theTabBarController shouldSelectViewController:(UIViewController *)viewController
{
return (theTabBarController.selectedViewController != viewController);
}