Closed zuocai1993 closed 8 years ago
Demo中在设置 setViewControllers 时,全部添加的 UINavigationController
,
[tabBarController setViewControllers:@[
firstNavigationController,
secondNavigationController,
thirdNavigationController,
fourthNavigationController
]];
你如果不想“想实现导航隐藏”,不添加 UINavigationController
,直接添加 UIViewController
就可以了。
您提供了以下三种设置方式 其中只有第一种的设置方式是正确的。那么我想实现导航隐藏,这个标题如何去隐藏? 1.self.navigationItem.title = @"首页(3)"; 2.self.tabBarItem.title = @"首页23333"; 3.self.title = @"首页1";