2012-06-04 9 views

Respuesta

8

Todos sus controladores de una pestaña son accesibles a través de la matriz del controlador tabviewcontroller. Puedes modificarlos directamente allí. Si está buscando cambiar algo antes de que el usuario vea ese específico, configure el delegado e implemente el método delegado. (Se puede simplemente cambiar el VC dentro de este método y volver sí)

http://developer.apple.com/library/ios/#DOCUMENTATION/UIKit/Reference/UITabBarControllerDelegate_Protocol/Reference/Reference.html

tabBarController:shouldSelectViewController: 

Asks the delegate whether the specified view controller should be made active. 
- (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController Parameters 

tabBarController 

    The tab bar controller containing viewController. viewController 

    The view controller belonging to the tab that was tapped by the user. 

Return Value 

YES if the view controller’s tab should be selected or NO if the current tab should remain active. Discussion 

The tab bar controller calls this method in response to the user tapping a tab bar item. You can use this method to dynamically decide whether a given tab should be made the active tab. Availability 

    Available in iOS 3.0 and later. 

Declared In UITabBarController.h 
+0

brillante respuesta. Gracias – Slappy

+0

Esto no se llama si la pestaña se cambia programáticamente. – malhal

Cuestiones relacionadas