在 UIViewController 中的 UITabBarItem 中设置徽章值

发布于 2024-10-14 20:26:47 字数 309 浏览 3 评论 0原文

我将 UITabBarController 添加到窗口,并将 UITabBarController 的 viewControllers 属性设置为 ViewController 数组。 如果我在 viewController 内设置徽章值,那么它工作正常。 self.tabBarItem.badgeValue = @"3";

但是,如果我将 UITabBarController 的 viewControllers 属性设置为将视图控制器作为 rootviewcontroller 的导航控制器数组,那么它不会设置徽章值。

有什么建议吗?

谢谢

I am adding UITabBarController to the window, and setting the viewControllers property of the UITabBarController to the array of ViewControllers.
If i am setting the badge value inside the viewController then its working fine.
self.tabBarItem.badgeValue = @"3";

But if i am setting the viewControllers property of the UITabBarController to the array of navigation controllers which is having view controller as the rootviewcontroller, then its not setting the badge value.

Any suggestions ??

Thanks

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

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

发布评论

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

评论(2

诠释孤独 2024-10-21 20:26:47

是的,我得到了答案。

[[self navigationController] tabBarItem].badgeValue = @"3";

Yes, i got the answer.

[[self navigationController] tabBarItem].badgeValue = @"3";
思念绕指尖 2024-10-21 20:26:47

或者这个:

[[self.tabBarController.tabBar.items objectAtIndex:2] setBadgeValue:[NSString stringWithFormat:@"%d",[UIApplication sharedApplication].applicationIconBadgeNumber]];

Or this:

[[self.tabBarController.tabBar.items objectAtIndex:2] setBadgeValue:[NSString stringWithFormat:@"%d",[UIApplication sharedApplication].applicationIconBadgeNumber]];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文