Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在应用程序运行时动态更改标签栏项目文本/图标?
例如,标签栏上的项目名称是 Item1。我想在使用应用程序时以编程方式将其更改为“ItemX”。
非常感谢,-代码
您想在哪里更改 Tabbar Item 文本/图标?在视图控制器本身中?您可以在视图控制器中更改 Tabbar Item 文本/图标,如下所示:
self.title = @"ItemX"; self.tabBarItem.image = [UIImage imageNamed:@"ItemX"];
如何在可可的 uitabbarcontroller 中设置单个 tabbaritem 图标