iOS底部标签栏标题

发布于 2024-12-29 15:32:13 字数 99 浏览 0 评论 0原文

我不知道如何更改选项卡栏上的底部栏标题。

请看这张图片: 屏幕截图

I can't figure out how to change the bottom bar titles on the Tab Bar.

Please see this image:
screenshot

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

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

发布评论

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

评论(2

云之铃。 2025-01-05 15:32:13

假设你的意思是你无法弄清楚,并且你想要像图中这样的东西,

tabBarController.tabBarItem.title = @"Your title"

Assuming you meant you cannot figure it out, and you want something like in the image,

tabBarController.tabBarItem.title = @"Your title"
为你拒绝所有暧昧 2025-01-05 15:32:13

在进入底部选项卡栏的每个视图控制器中,您必须指定选项卡栏项:

将此代码插入到您的 init 方法或 viewDidLoad 方法中。

UITabBarItem * tabtitle = [[UITabBarItem alloc] initWithTitle: @" YOUR TITLE "
                                                        image: nil //or your image 
                                                          tag: 0];

[self setTabBarItem: tabtitle];
//[tabtitle release]; //release if not using ARC

In each view controller that goes into the bottom tabbar, you must specify the tab bar item:

insert this code in your init method, or viewDidLoad method.

UITabBarItem * tabtitle = [[UITabBarItem alloc] initWithTitle: @" YOUR TITLE "
                                                        image: nil //or your image 
                                                          tag: 0];

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