如何更改页面标题而不更改选项卡栏项目的标题?

发布于 2024-12-08 13:39:11 字数 720 浏览 1 评论 0原文

我希望能够更改页面的标题而不影响选项卡栏的标题。我当前的实现如下:

//Setting page and UITabbar title in app delegate
ForYouViewController *fuvc = [[ForYouViewController alloc]init];
fuvc.title = @"Questions";
UITabBarItem *tempTabBarItem1 = [[UITabBarItem alloc]initWithTitle:@"Questions" image:nil tag:QUESTIONTAB_INDEX];

单击问题选项卡之前

在此处输入图像描述

//After changing the title's page in view did load of "ForYouViewController"
- (void)viewDidLoad
{
    [super viewDidLoad];
    self.title = @"Latest";
}

单击问题选项卡之后(选项卡栏标题已更改) )

在此处输入图像描述

如何设置页面标题,使其不会更改选项卡栏的描述?

I want to be able to change the page's title without affecting the tab bar's title. My current implementation is as follows:

//Setting page and UITabbar title in app delegate
ForYouViewController *fuvc = [[ForYouViewController alloc]init];
fuvc.title = @"Questions";
UITabBarItem *tempTabBarItem1 = [[UITabBarItem alloc]initWithTitle:@"Questions" image:nil tag:QUESTIONTAB_INDEX];

Before clicking on questions tab

enter image description here

//After changing the title's page in view did load of "ForYouViewController"
- (void)viewDidLoad
{
    [super viewDidLoad];
    self.title = @"Latest";
}

After clicking on questions tab (tab bar title changed)

enter image description here

How can I set the the page title such that it does not alter the tab bar's description?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抚你发端 2024-12-15 13:39:11

你可以试试这个

YourAppDelegate *appDelegate = (YourAppDelegate *)[[UIApplication sharedApplication] delegate];

[appDelegate tempTabBarItem1] setTitle:@"Questions"];

You can try this

YourAppDelegate *appDelegate = (YourAppDelegate *)[[UIApplication sharedApplication] delegate];

[appDelegate tempTabBarItem1] setTitle:@"Questions"];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文