iOS 推送通知政策

发布于 2024-12-03 11:14:22 字数 114 浏览 0 评论 0原文

我想在我的 iPad 应用程序中实现推送通知服务。但在此之前,我必须了解有关其限制的更多细节。

我知道用户必须接受应用程序的通知能力。但这仅适用于应用程序在后台或应用程序处于活动状态时发出的通知吗?

I'd like to implement a push notification service in my iPad app. But before I do that I have to know further details about its contraints.

I know that the user has to accept the apps notification ability. But is that only for notifications which come in when the app is in the background or also when the app is active?

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

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

发布评论

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

评论(1

飘过的浮云 2024-12-10 11:14:22

用户不需要接受允许推送通知的功能,但他们可以从“设置”应用程序中将其关闭。如果应用程序位于后台,这将关闭所有传入的推送通知。如果您的应用程序正在运行:

如果通知到达时应用程序正在运行,则不会显示警报、图标标记或播放声音,即使(在 iOS 中)设备屏幕已锁定。相反,应用程序委托会收到通知并可以直接处理它。

您可以在 中找到有关推送通知的更多信息Apple 的推送通知编程指南

A user doesn't need to accept the ability to allow Push Notifications but they can turn them off from the Settings app. This will turn off all incoming push notifications if the app is in the Background. If your app is running:

If the application is running when the notification arrives, no alert is displayed or icon badged or sound played, even if (in iOS) the device screen is locked. Instead, the application delegate is informed of the notification and can handle it directly.

You can find loads more information on Push Notifications in Apple's Push Notification Programming Guide

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