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.
是否可以隐藏 a 中的文本标签tabBarItem?
tabBarItem
我的文本标签是我用作替换的图像的一部分,因为它们有一些我无法在代码中复制的斜角/阴影。
据我所知,在与选项卡关联的视图控制器中,您可以设置:
self.title=@"";
但是在UINavigationController这种情况下也设置为@""导航栏的标题,所以你必须重新定义titleView导航栏。
UINavigationController
@""
titleView
您可以将文本字段留空。例如:
-(void)setBlankTitleForTabBarItem:(UITabBarItem*)Item{ [Item setTitle:nil]; }