2010-03-19 85 views
18

如何刪除標籤欄中的徽章我曾在下面的代碼中使用但不適用於我。刪除標籤欄中的徽章

UITabBarItem *chatbadge=[appDelegate.tabBarController.tabBar.items objectAtIndex:2]; 
chatbadge.badgeValue=nil; 

建議任何解決方案。

回答

49

嘗試通過的viewController做:

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

viewController.tabBarItem.badgeValue = nil; 
2

斯威夫特版本&這是很奇怪的

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

工作,而不是

self.tabBarItem.badgeValue = nil