如何使Iphone图标更新通知样式图标

发布于 2024-10-25 18:25:37 字数 157 浏览 2 评论 0原文

我想用我的图标做一些类似于 iPhone 所做的事情。我想要一个图标,并且在图标的右上角有一个圆形的红色通知器,用于显示新的更新。

在此处输入图像描述

我该如何制作?

I'd like to make something similar what iPhone does with my icons. I'd like to have an icon and also the round red notifier in the upper right side of the icon for showing new updates.

enter image description here

How can I make it?

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

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

发布评论

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

评论(2

烟雨凡馨 2024-11-01 18:25:37

这些徽章是通过操作系统处理的。您不能提供包含基本方块之外的任何内容的图标。要在程序中设置徽章,请参阅 UIApplication 和 UILocalNotification 的文档。

Those badges are handled through the OS. You can't provide an icon with any content outside of the basic square. To set the badge in the program look at the documentation for UIApplication and UILocalNotification.

葬花如无物 2024-11-01 18:25:37

要让您的应用程序显示徽章编号,您可以在您希望更改编号的任何方法中使用类似的内容。

int iBadgeNum = 5; //This variable will be read below
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:iBadgeNum];

To get your application to display badge numbers, you can use something like this inside whatever method you want it to change the number.

int iBadgeNum = 5; //This variable will be read below
[[UIApplication sharedApplication] setApplicationIconBadgeNumber:iBadgeNum];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文