我们重新设计了我们的应用程序,使用Tabbarcontroller作为主视图。有一个实例我们需要显示一个包含足够数据的记录,它也会被分解为tabbarcontroller。之前我们做过segue,如下所示。我不确定在两个tabbarcontrollers
之间需要改变什么SelectProvidersView *view = [[self storyboard] instantiateViewControllerWithIdentifier:@"careTeamView"];
view.careProviders = self.selectedPatient.careProviders;
[self.navigationController pushViewController:view animated:YES];
我猜是因为我在一个标签控制器而不是导航控制器里面,我只是不知道应该如何改变它。
答案 0 :(得分:1)
请勿使用segue
在tabBarControllers
之间切换。使用[(UITabBarController*)self.navigationController.topViewController setSelectedIndex:index];
手动切换到您想要的viewController