Remove tab bar item text, show only image

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

    Based on the answer of ddiego, in Swift 4.2:

    extension UITabBarController {
        func cleanTitles() {
            guard let items = self.tabBar.items else {
                return
            }
            for item in items {
                item.title = ""
                item.imageInsets = UIEdgeInsets(top: 6, left: 0, bottom: -6, right: 0)
            }
        }
    }
    

    And you just need to call self.tabBarController?.cleanTitles() in your view controller.

提交回复
热议问题