0

流动 我正在尝试从 newViewController 按钮到达 IBAction 上的选项卡栏 C。但是当我到达时,标签栏控制器显示 A 的视图而不是 C 的视图。如果使用

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

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

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

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

4

1 回答 1

0

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

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

而不是使用模态演示

于 2012-08-08T10:10:58.260 回答