Remove tab bar item text, show only image

前端 未结 19 2134
我寻月下人不归
我寻月下人不归 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条回答
  •  -上瘾入骨i
    2020-12-04 07:28

    make a subclass of UITabBarController and assign that to your tabBar , then in the viewDidLoad method place this line of code:

    tabBar.items?.forEach({ (item) in
            item.imageInsets = UIEdgeInsets.init(top: 8, left: 0, bottom: -8, right: 0)
        })
    

提交回复
热议问题