Remove tab bar item text, show only image

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

    code:

    private func removeText() {
        if let items = yourTabBarVC?.tabBar.items {
           for item in items {
              item.title = ""
           }
        }
     }
    

提交回复
热议问题