在iPhone上,如何制作图标徽章?

发布于 2024-07-27 01:52:47 字数 50 浏览 2 评论 0原文

我想在不在应用程序(例如“邮件”应用程序)中时设置图标徽章。 我怎样才能做到这一点?

I want to set an icon badge while I am not in the application, like the Mail application.
How can I do that?

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

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

发布评论

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

评论(2

捂风挽笑 2024-08-03 01:52:47

在您的应用程序中,您可以使用 UIApplicationapplicationIconBadgeNumber 属性来设置徽章编号:

[UIApplication sharedApplication].applicationIconBadgeNumber = 1;

如果您想在用户不启动应用程序的情况下更改徽章,则需要使用推送通知服务。 推送通知服务编程指南应该拥有您需要的所有信息。

From within your application you can use the applicationIconBadgeNumber property of UIApplication to set the badge number:

[UIApplication sharedApplication].applicationIconBadgeNumber = 1;

If you want to change the badge without the user launching your app, you need to use the push notification service. The Push Notification Service Programming Guide should have all the info you need.

瞄了个咪的 2024-08-03 01:52:47

iPhone SDK 尚不支持该功能。 它只能在越狱设备上完成。

编辑:抱歉,这并不完全正确,您可以使用“推送”功能来完成此操作,但现阶段仅允许使用 Apple 筛选的应用程序。

再次编辑:不,我完全错了,试试这个

[UIApplication sharedApplication].applicationIconBadgeNumber = 2;

The iPhone SDK doesn't support that functionality yet. It can only be done on a jailbroken device.

EDIT: Sorry that's not ENTIRELY true, you can do it with the 'push' function but only apps that are screened by Apple are allowed at this stage.

EDIT AGAIN: Nope I'm completely wrong try this

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