tabBarController 点击bar 传值

Posted justqi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tabBarController 点击bar 传值相关的知识,希望对你有一定的参考价值。

//没有导航
//                    OrderViewController *orderVC = [self.tabBarController.viewControllers objectAtIndex:2];

//有导航的
                    UINavigationController *temp = (UINavigationController *)[super.tabBarController.viewControllers objectAtIndex:2];
                    OrderViewController *orderVC = (OrderViewController *)temp.topViewController;
                    orderVC.currentIndex = 1;//选中待付款按钮
                    self.tabBarController.selectedIndex = 2;//跳转

 

以上是关于tabBarController 点击bar 传值的主要内容,如果未能解决你的问题,请参考以下文章