如何使用自定义 UIImage 作为 UITabBarItem Badge?

发布于 2024-12-18 07:15:39 字数 76 浏览 2 评论 0原文

如何添加自定义 UIImage 作为 UITabBarItem 的徽章?
即当设置 UITabbarItem 的徽章值时它将显示。

How can I add a custom UIImage as the Badge for a UITabBarItem?
I.e It will show up when the badge value of the UITabbarItem is set.

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

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

发布评论

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

评论(4

命比纸薄 2024-12-25 07:15:39

考虑子类化 UITabBarItem 并自己绘制它

Consider subclassing UITabBarItem and drawing it yourself

花海 2024-12-25 07:15:39

Sascha Paulus 编写了一个很棒的类,它就是这样做的:

CustomBadge2.0

您当然可以将它与子类化 UITabBarItem 结合使用。

Sascha Paulus wrote a great class that does just this:

CustomBadge2.0

You can of course use it in combination with subclassing UITabBarItem.

水中月 2024-12-25 07:15:39

您可以为 CustomBadge 使用以下自定义类:

https://github.com/ckteebe/CustomBadge /tree/master/Classes

我希望这会对您有所帮助。

u can use the following custom class for CustomBadge:

https://github.com/ckteebe/CustomBadge/tree/master/Classes

i hope this will help you.

递刀给你 2024-12-25 07:15:39

可以在此处查看。这里自定义项目被添加为 UILabel。考虑在这里使用您自己的选择。

演示

enter此处的图像描述

只需两行代码即可开始

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

  //supplying the animation parameter
  [UITabBarItem setDefaultAnimationProvider:[[DefaultTabbarBadgeAnimation alloc] init]];
  [UITabBarItem setDefaultConfigurationProvider:[[DefaultSystemLikeBadgeConfiguration alloc] init]];

  //rest of your code goes following...

  return YES;
}

Can have a look inside here. Here custom item is added as a UILabel. Consider using your own choices here.

Demo

enter image description here

and only two line of code, to get you go

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

  //supplying the animation parameter
  [UITabBarItem setDefaultAnimationProvider:[[DefaultTabbarBadgeAnimation alloc] init]];
  [UITabBarItem setDefaultConfigurationProvider:[[DefaultSystemLikeBadgeConfiguration alloc] init]];

  //rest of your code goes following...

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