2012-06-04 13 views

cevap

8

Tüm denetleyicileriniz bir sekme görünümünden tabviewcontroller dizisi aracılığıyla erişilebilir. Onları doğrudan buradan değiştirebilirsiniz. Kullanıcı belirli bir tanesini görmeden önce bir şeyi değiştirmek istiyorsanız, temsilci ayarlayın ve temsilci yöntemini uygulayın.

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

Parlak cevap (sadece bu yöntem içinde vc değiştirebilir ve evet dönebilirsiniz). Teşekkürler – Slappy

+0

Sekme programatik olarak değiştirilirse bu çağrılmaz. – malhal

İlgili konular