UITabBar 上的通知图标

发布于 2024-08-21 01:53:58 字数 227 浏览 4 评论 0 原文

我找不到任何向图标添加“通知”的参考,最好是添加到 UITabBar 中,如所附图像,数字 8。

我想我不必手动创建圆圈内的所有数字,或创建它每次我需要并使用一些图标手动更新图像时?

谢谢

替代文字

I can't find any reference to add a 'notification' to an icon, preferably into a UITabBar, like the image attached, number 8.

I suppose I don't have to create manually ALL the numbers inside a circle, or create it every time I need and update the image manually with some of my icons ?

thanks,

r.

alt text

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

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

发布评论

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

评论(3

红ご颜醉 2024-08-28 01:53:58
 UITabBarItem *item = [self.tabBarController.tabBar.items objectAtIndex:0];  
 item.badgeValue = @"8";
 UITabBarItem *item = [self.tabBarController.tabBar.items objectAtIndex:0];  
 item.badgeValue = @"8";
郁金香雨 2024-08-28 01:53:58

使用这个:

self.newsTabBarItem = (UITabBarItem *)[stTabBarController.tabBar.items objectAtIndex:1];
self.friendsTabBarItem = (UITabBarItem *)[stTabBarController.tabBar.items objectAtIndex:2];

Use this:

self.newsTabBarItem = (UITabBarItem *)[stTabBarController.tabBar.items objectAtIndex:1];
self.friendsTabBarItem = (UITabBarItem *)[stTabBarController.tabBar.items objectAtIndex:2];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文