Remove Badge from tabbar item

前端 未结 2 1131
不思量自难忘°
不思量自难忘° 2021-02-03 23:29

How to Remove Badge from the tabbar item i had use below code but not working for me.

UITabBarItem *chatbadge=[appDelegate.tabBarController.tabBar.items objectAt         


        
2条回答
  •  臣服心动
    2021-02-03 23:39

    Swift version & this is really weird

    self.tabBarController?.viewControllers?[3].tabBarItem.badgeValue = nil
    

    is working and not

    self.tabBarItem.badgeValue = nil
    

提交回复
热议问题