美文网首页
tabBarController点击bar 传值

tabBarController点击bar 传值

作者: 来宝 | 来源:发表于2018-12-24 17:35 被阅读7次
//没有导航
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 传值

      本文链接:https://www.haomeiwen.com/subject/qagzkqtx.html