我有一个基于tabbar的应用。在app delegate中,我实现了:
- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController{
if([viewController isKindOfClass:[TabBNavigationController class]]){
NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
[nc postNotificationName:@"TabBClicked"
object:self userInfo:nil];}
并发出通知。按下tabB时显示ViewB。 ViewB位于UINavigationController中。问题是ViewB的viewWillAppear在上述事件之前触发。我需要知道在ViewB的viewWillAppear触发之前点击TabB。在这种情况下,还有另一种方法可以在viewWillAppear前面吗?
答案 0 :(得分:2)
您是否尝试tabBarController:shouldSelectViewController:
,应在任何视图可见之前调用此方法。