J jnic macrumors 6502a Jan 30, 2009 #2 Make your app delegate a UITabBarControllerDelegate, then you can use Code: - (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController to catch when a user selects a view controller from the tab bar.
Make your app delegate a UITabBarControllerDelegate, then you can use Code: - (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController to catch when a user selects a view controller from the tab bar.
PhoneyDeveloper macrumors 68040 Jan 30, 2009 #4 You need a separate view controller for each tab. They can be instances of the same class but you need a separate instance for each tab.
You need a separate view controller for each tab. They can be instances of the same class but you need a separate instance for each tab.