18
如何刪除標籤欄中的徽章我曾在下面的代碼中使用但不適用於我。刪除標籤欄中的徽章
UITabBarItem *chatbadge=[appDelegate.tabBarController.tabBar.items objectAtIndex:2];
chatbadge.badgeValue=nil;
建議任何解決方案。
如何刪除標籤欄中的徽章我曾在下面的代碼中使用但不適用於我。刪除標籤欄中的徽章
UITabBarItem *chatbadge=[appDelegate.tabBarController.tabBar.items objectAtIndex:2];
chatbadge.badgeValue=nil;
建議任何解決方案。
嘗試通過的viewController做:
UIViewController *viewController = [appDelegate.tabBarController.viewControllers objectAtIndex:2];
viewController.tabBarItem.badgeValue = nil;
斯威夫特版本&這是很奇怪的
self.tabBarController?.viewControllers?[3].tabBarItem.badgeValue = nil
工作,而不是
self.tabBarItem.badgeValue = nil