允许或不允许 iPhone 应用程序中的 Apple 推送通知的警报

发布于 2024-10-20 03:53:55 字数 177 浏览 0 评论 0原文

我在我的应用程序中使用 Apple 推送通知。

当我的应用程序安装在设备上时,我希望应用程序询问用户是否允许应用程序使用通知,我该如何实现? 像这个应用程序一样。

在此处输入图像描述

谢谢。

I am using Apple Push Notification in my application.

when my application is installed on device i want application to ask user if they want allow application to use notification or not, how can i implement so?
something like this application.

enter image description here

Thanks.

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

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

发布评论

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

评论(2

深白境迁sunset 2024-10-27 03:53:55

您不需要为此做任何额外的工作。只需配置您的应用程序以进行推送通知和呼叫:

[[UIApplication sharedApplication] registerForRemoteNotificationTypes: types];

You don't need to do any extra work for that. Just configure your app for push notifications and call:

[[UIApplication sharedApplication] registerForRemoteNotificationTypes: types];
樱娆 2024-10-27 03:53:55

当应用程序要求自身注册推送通知时,这种情况会自动发生,就像应用程序首次请求设备位置时一样。除了您必须进行的 -registerForRemoteNotificationTypes: 调用(如 Max 提到的)之外,您不需要执行任何特殊操作。

This happens automatically when an app asks to register itself for push notifications, just as it does when an app first asks for the device's location. You don't need to do anything special beyond the -registerForRemoteNotificationTypes: call (as Max mentioned) which you have to make anyway.

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