ChenYilong / CYLTabBarController

[EN]It is an iOS UI module library for adding animation to iOS tabbar items and icons with Lottie, and adding a bigger center UITabBar Item. [CN]【中国特色 TabBar】一行代码实现 Lottie 动画TabBar,支持中间带+号的TabBar样式,自带红点角标,支持动态刷新。【iOS13 & Dark Mode & iPhone XS MAX supported】
MIT License
6.92k stars 1.46k forks source link

关于设置导航标题问题 #45

Closed zuocai1993 closed 8 years ago

zuocai1993 commented 8 years ago

您提供了以下三种设置方式 其中只有第一种的设置方式是正确的。那么我想实现导航隐藏,这个标题如何去隐藏? 1.self.navigationItem.title = @"首页(3)"; 2.self.tabBarItem.title = @"首页23333"; 3.self.title = @"首页1";

ChenYilong commented 8 years ago

Demo中在设置 setViewControllers 时,全部添加的 UINavigationController

[tabBarController setViewControllers:@[
                                               firstNavigationController,
                                               secondNavigationController,
                                               thirdNavigationController,
                                               fourthNavigationController
                                               ]];

你如果不想“想实现导航隐藏”,不添加 UINavigationController,直接添加 UIViewController 就可以了。