• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ios - 即使注册成功,isRegisteredForRemoteNotifications 也会返回 false

[复制链接]
菜鸟教程小白 发表于 2022-12-11 20:06:04 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

问题

isRegisteredForRemoteNotifications

return false 即使我成功收到了设备 token 。

情况

1。注册

用户安装我的应用程序后,在特定时间点,我检查 isRegisteredForRemoteNotifications,如果为假,我使用上面的代码要求用户允许通知

func registerUserNotificationSettings() {
    let userNotificationTypes: UIUserNotificationType = ([.alert, .badge, .sound])
    let settings = UIUserNotificationSettings(types: userNotificationTypes, categories: nil)
    UIApplication.shared.registerUserNotificationSettings(settings)
  }

在显示对话框并且以太用户推送允许或禁止之后,

didRegister notificationSettings

被调用。我们叫

application.registerForRemoteNotifications

在里面。哪个调用

didRegisterForRemoteNotificationsWithDeviceToken

然后我们将 token 发送到我们的服务器。

2。检查用户是否关闭了推送权限

在上述操作之后,如果使用关闭通知表单 iOS 设置应用程序,我会显示一个模式警报,要求用户在某个时候将通知设置更改为 ON。我判断通过这段代码显示模态。

func isApproved() -> Bool {
    guard let setting = UIApplication.shared.currentUserNotificationSettings else {
      return false
    }
    return setting.types.rawValue > 0
  }

如果 isApproved == false,我们会显示模态。

3。将用户发送到设置应用

在模态框上,我们放置了一个调用以下方法的按钮

func showAppropriateNotificationConfigView() {

    if UIApplication.shared.isRegisteredForRemoteNotifications == false {
      // case the app has never called registerUserNotificationSettings or registration failed
      registerUserNotificationSettings()

    } else {
      // registerUserNotificationSettings has beeen called and registration succeed
      UIApplication.shared.openURL(URL(string: UIApplicationOpenSettingsURLString)!)
    }
  }

我们的大多数测试设备都返回 true(我们确认设备 token 已成功接收)

UIApplication.shared.isRegisteredForRemoteNotifications 

但我们只有一台设备(iPhone7 加 iOS 11.3)返回 false。 这样

registerUserNotificationSettings

被调用并且不显示任何内容,而不是通过

将用户发送到设置应用程序
UIApplication.shared.openURL(URL(string: UIApplicationOpenSettingsURLString)!)

问题

我的代码有什么问题,我们该如何解决?

我了解某些方法已被弃用,但我需要临时快速修复它。



Best Answer-推荐答案


我通过更新所有相关的弃用方法解决了这个问题。

关于ios - 即使注册成功,isRegisteredForRemoteNotifications 也会返回 false,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50114522/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap