iOS 获取tabbar 的当前页签
2017-07-12 本文已影响503人
coco_CC
在APPDelegate里可通过该方法拿到当前页签
int index = [self.tabBarController selectedIndex];
//拿到tabbar的当前分栏的NavigationController
UINavigationController *nav = [self.tabBarController.viewControllers objectAtIndex:self.tabBarController.selectedIndex];