我在iOS中集成了统一功能并且运行良好。但是有意想不到的导航条项目。如何隐藏该导航项或将其删除,以便我可以显示我的顶级项目。
以下是该项目的图片:
我也不知道他是怎么得到这个名字的。 从故事板中删除导航项后,该项目仍在那里,但没有任何名称。 这是代码:
@property (nonatomic, strong) UINavigationController *navigationController;
UIStoryboard *storyBoard;
storyBoard = [UIStoryboard storyboardWithName:@"Main" bundle:nil];
_rootController = [[UnityPortraitOnlyViewController alloc] init];
_rootView = [[UIView alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
_rootController.view = _rootView;
ViewController *mainVC = [storyBoard instantiateViewControllerWithIdentifier:@"ViewController"];
self.navigationController = [[UINavigationController alloc] initWithRootViewController:mainVC];
[_rootView addSubview:self.navigationController.view];
答案 0 :(得分:1)
试试这个:
self.navigationController = [[UINavigationController alloc] initWithRootViewController:mainVC];
self.navigationController.navigationBarHidden = YES;
self.navigationController.navigationBar.translucent = NO;