两个tabbarcontrollers之间的争论

时间:2013-12-12 00:27:41

标签: ios ios7 uitabbarcontroller segue uistoryboardsegue

我们重新设计了我们的应用程序,使用Tabbarcontroller作为主视图。有一个实例我们需要显示一个包含足够数据的记录,它也会被分解为tabbarcontroller。之前我们做过segue,如下所示。我不确定在两个tabbarcontrollers

之间需要改变什么
SelectProvidersView *view = [[self storyboard] instantiateViewControllerWithIdentifier:@"careTeamView"];
view.careProviders = self.selectedPatient.careProviders;
[self.navigationController pushViewController:view animated:YES];

我猜是因为我在一个标签控制器而不是导航控制器里面,我只是不知道应该如何改变它。

1 个答案:

答案 0 :(得分:1)

请勿使用seguetabBarControllers之间切换。使用[(UITabBarController*)self.navigationController.topViewController setSelectedIndex:index];手动切换到您想要的viewController