Remove Badge from tabbar item

前端 未结 2 1133
不思量自难忘°
不思量自难忘° 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-04 00:00

    Try doing it via the viewController:

    UIViewController *viewController = [appDelegate.tabBarController.viewControllers objectAtIndex:2];
    
    viewController.tabBarItem.badgeValue = nil;
    

提交回复
热议问题