iOS - 检查应用程序中的推送通知支持

发布于 2024-12-11 19:33:41 字数 134 浏览 0 评论 0原文

我向我的应用程序添加了推送通知。 我的应用程序基于推送通知工作。 当应用程序第一次运行时,它会显示用户是否想要接收推送通知的警报。 是否可以强制接受推送通知? 或者,如果这是不可能的,我们可以检查是否为此应用程序设置了推送通知,并通过警报终止该应用程序?

I added Push notifications to my application.
And my application works based on push notifications.
When the app runs for the first time, it is showing alert whether user wants to receive push notifications or not.
Is it possible to make it mandatory to accept push notifications?
Or if this is not possible, can we check whether push notifications are set for this app or not and terminate the application with alert?

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

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

发布评论

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

评论(3

爱的十字路口 2024-12-18 19:33:41

您只能检查用户是否选择接收推送通知:

UIRemoteNotificationType status = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
if (status == UIRemoteNotificationTypeNone)
{
    NSLog(@"User doesn't want to receive push-notifications");
}

You can only check whether user have selected to receive push-notifications:

UIRemoteNotificationType status = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
if (status == UIRemoteNotificationTypeNone)
{
    NSLog(@"User doesn't want to receive push-notifications");
}
小草泠泠 2024-12-18 19:33:41

//最好使用以下内容代替

BOOL status = [[UIApplication sharedApplication] isRegisteredForRemoteNotifications];
如果(!状态)
{
NSLog(@"用户不想接收推送通知");
}

//It's better to use the followiing instead

BOOL status = [[UIApplication sharedApplication] isRegisteredForRemoteNotifications];
if (!status)
{
NSLog(@"User doesn't want to receive push-notifications");
}

半步萧音过轻尘 2024-12-18 19:33:41

如果您的应用目标 >= iOS 8.0,您可以使用:

UIApplication.sharedApplication().isRegisteredForRemoteNotifications()

,因为 enabledRemoteNotificationTypes 已弃用。

If your app target >= iOS 8.0 you can use:

UIApplication.sharedApplication().isRegisteredForRemoteNotifications()

as enabledRemoteNotificationTypes is deprecated.

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