我有一个登录屏幕,在 auth 之后,我有一个标签栏控制器,其中包含我想要呈现的每个视图的导航控制器。
这是我使用的代码
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UITabBarController *obj=[storyboard instantiateViewControllerWithIdentifier:@"tabBar"];
self.navigationController.navigationBarHidden=NO;
[self.navigationController pushViewController:obj animated:YES];
问题是标签栏没有显示。另外,如果需要,如何指定在标签栏控制器中显示第二个视图?
我正在使用故事板。
谢谢你的帮助。