如何在不更改 UITabBar 标题的情况下更改 UINavigationBar 标题?

How to change UINavigationBar title without changing UITabBar title?

我在 UITabBarController 上嵌入了一个 UINavigationController。我的目标是更改 UINavigationController 导航栏的标题,同时保留 UITabBarItem 上的标题。尝试更改嵌入 UINavigationController 的 UIViewController 的标题:

self.title = @"NavBarTitle";

它确实有效,但这也改变了 UITabBarItem 的标题。 有没有办法将这两个标题分开? 谢谢!

试试这个

self.navigationController.visibleViewController.title = @"NavBarTitle";

或使用

self.navigationItem.title = @"NavBarTitle";

或者试试这个

self.tabBarController.navigationItem.title = @"NavBarTitle";