Remove Badge from tabbar item

前端 未结 2 1132
不思量自难忘°
不思量自难忘° 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
    
    0 讨论(0)
  • 2021-02-04 00:00

    Try doing it via the viewController:

    UIViewController *viewController = [appDelegate.tabBarController.viewControllers objectAtIndex:2];
    
    viewController.tabBarItem.badgeValue = nil;
    
    0 讨论(0)
提交回复
热议问题