本文介绍了从tabbar项目中删除徽章的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何从我在代码下方使用但不适用于我的tabbar项目中删除徽章。
How to Remove Badge from the tabbar item i had use below code but not working for me.
UITabBarItem *chatbadge=[appDelegate.tabBarController.tabBar.items objectAtIndex:2];
chatbadge.badgeValue=nil;
建议任何解决方案。
推荐答案
尝试通过viewController进行:
Try doing it via the viewController:
UIViewController *viewController = [appDelegate.tabBarController.viewControllers objectAtIndex:2];
viewController.tabBarItem.badgeValue = nil;
这篇关于从tabbar项目中删除徽章的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!