Remove tab bar item text, show only image

前端 未结 19 2158
我寻月下人不归
我寻月下人不归 2020-12-04 06:50

Simple question, how can I remove the tab bar item text and show only the image?

I want the bar items to like in the instagram app:

19条回答
  •  情话喂你
    2020-12-04 07:10

    // Remove the titles and adjust the inset to account for missing title
    for(UITabBarItem * tabBarItem in self.tabBar.items){
        tabBarItem.title = @"";
        tabBarItem.imageInsets = UIEdgeInsetsMake(6, 0, -6, 0);
    }
    

提交回复
热议问题