小编典典

在 iPhone 上确定用户是否启用了推送通知

all

我正在寻找一种方法来确定用户是否通过设置启用或禁用了我的应用程序的推送通知。


阅读 90

收藏
2022-06-24

共1个答案

小编典典

打电话enabledRemoteNotificationsTypes检查口罩。

例如:

UIRemoteNotificationType types = [[UIApplication sharedApplication] enabledRemoteNotificationTypes];
if (types == UIRemoteNotificationTypeNone) 
   // blah blah blah

iOS8及以上:

[[UIApplication sharedApplication] isRegisteredForRemoteNotifications]
2022-06-24