Remove tab bar item text, show only image

前端 未结 19 2159
我寻月下人不归
我寻月下人不归 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:26

    If you're using storyboards this would be you best option. It loops through all of the tab bar items and for each one it sets the title to nothing and makes the image full screen. (You must have added an image in the storyboard)

    for tabBarItem in tabBar.items!
    {
       tabBarItem.title = ""
       tabBarItem.imageInsets = UIEdgeInsetsMake(6, 0, -6, 0)
    }
    

提交回复
热议问题