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.
我有一个UITabBar基于应用程序,在一个 TabBar 按钮上我有一个导航控制器。当我移动到导航控制器时,需要删除标签栏突出显示选项。不应选择标签栏按钮。
UITabBar
我怎么能让这成为可能?
尝试查看UITabBarItem文档的“管理完成和选定的图像”任务部分。
如果要更改 tabBar 索引,请使用
[self.tabBarController setSelectedIndex:index];
如果您不想显示选定的索引,则只需隐藏 tabBar。