我正试图通过newViewController按钮到达IBAction上的标签栏C.但是当我到达标签栏控制器时,显示A的视图而不是C的视图。如果使用
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController *vc = [storyboard instantiateViewControllerWithIdentifier:@"MyInitialViewController"];
[vc presentModalViewController:navController animated:NO];
我最终创建了C标签栏的视图,没有标签栏选项和这样的导航栏
任何帮助将不胜感激!谢谢
答案 0 :(得分:0)
如果您使用故事板并希望保留导航栏和标签栏,则应使用
[self.navigationController performSegueWithIdentifier:@"MyInitialViewController" sender:self];
而不是使用模态演示