我想要一个新的视图控制器作为弹出窗口(其中有一些父视图控制器场景)。所以我决定添加 childViewController(从四面八方都有 50px 透明边框。)现在当我添加 childViewController 时,我没有获得导航栏。这就是我添加全尺寸 childViewController 的方式。
ShowPostTVC *postvcObj = [self.storyboard instantiateViewControllerWithIdentifier:@"ShowPostTVC"];
UINavigationController *childNavController = [[UINavigationController alloc] initWithRootViewController:postvcObj];
[self.navigationController addChildViewController:childNavController];
[self.navigationController.view addSubview:postvcObj.view];
[postvcObj didMoveToParentViewController:self];
我怎样才能在 childViewController 上获得真正的导航栏。