当 Tabbaritem 触摸时,Tabbar 隐藏徽章

发布于 2024-07-27 05:43:32 字数 123 浏览 6 评论 0原文

我尝试使用标签栏徽章,但我遇到了问题...我已经找到了如何设置徽章

,但我找不到如何捕获 tabbaritem 的触摸事件,以便当用户位于相应的 tabbaritem 上时我可以删除徽章

感谢您的帮助

I trying to use tabbar badges but i have problem ... I have found how to set the badge

but i can't find how to catch the touch event for the tabbaritem so i can delete the badge when the user is on the corresponding tabbaritem

Thanks for your help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅笑轻吟梦一曲 2024-08-03 05:43:32

您需要在选项卡栏的委托上实现 tabBarController:didSelectViewController: 。 要清除徽章,请将其设置为nil。 例如:

- (void) tabBarController:(UITabBarController*)aTabBarController
  didSelectViewController:(UIViewController*)viewController
{
    viewController.tabBarItem.badgeValue = nil;
}

You need to implement tabBarController:didSelectViewController: on the tab bar's delegate. To clear the badge, set it to nil. For example:

- (void) tabBarController:(UITabBarController*)aTabBarController
  didSelectViewController:(UIViewController*)viewController
{
    viewController.tabBarItem.badgeValue = nil;
}
鱼窥荷 2024-08-03 05:43:32

注意:记下您已显示徽章的选项卡栏的视图控制器内。

-(void) viewWillAppear:(BOOL)动画{

// reseting tabbar badge value...
self.tabBarItem.badgeValue = nil;

}

Note: Write down inside Viewcontroller of Tabbar on which you have displayed badge.

-(void) viewWillAppear:(BOOL)animated{

// reseting tabbar badge value...
self.tabBarItem.badgeValue = nil;

}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文