Tabbarcontroller行为 - iOS

时间:2012-08-08 09:14:52

标签: ios xcode uitabbarcontroller ibaction

flow 我正试图通过newViewController按钮到达IBAction上的标签栏C.但是当我到达标签栏控制器时,显示A的视图而不是C的视图。如果使用

UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];

UIViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"MyInitialViewController"];
[vc presentModalViewController:navController animated:NO]; 

我最终创建了C标签栏的视图,没有标签栏选项和这样的导航栏 c

任何帮助将不胜感激!谢谢

1 个答案:

答案 0 :(得分:0)

如果您使用故事板并希望保留导航栏和标签栏,则应使用

[self.navigationController performSegueWithIdentifier:@"MyInitialViewController" sender:self];

而不是使用模态演示