isRegisteredForRemoteNotifications
返回 false ,即使我已成功收到设备令牌。
用户安装了我的应用后,在特定点,我检查isRegisteredForRemoteNotifications
,如果为false,我使用上面的代码要求用户允许通知
func registerUserNotificationSettings() {
let userNotificationTypes: UIUserNotificationType = ([.alert, .badge, .sound])
let settings = UIUserNotificationSettings(types: userNotificationTypes, categories: nil)
UIApplication.shared.registerUserNotificationSettings(settings)
}
并在显示对话框并且以太网用户推送允许或禁止后
didRegister notificationSettings
被调用。我们打电话给
application.registerForRemoteNotifications
在里面。哪个电话
didRegisterForRemoteNotificationsWithDeviceToken
我们将令牌发送到我们的服务器。
完成上述操作后,如果使用关闭iOS设置应用程序的通知,我会显示一个模态警报,要求用户在某些时候将通知设置更改为ON。我判断通过这段代码显示模态。
func isApproved() -> Bool {
guard let setting = UIApplication.shared.currentUserNotificationSettings else {
return false
}
return setting.types.rawValue > 0
}
如果isApproved == false,我们会显示模态。
在模态上,我们放置了一个调用以下方法的按钮
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(我们确认已成功收到设备令牌)
UIApplication.shared.isRegisteredForRemoteNotifications
但我们只有一台设备(iPhone7加iOS 11.3)返回false。 那么
registerUserNotificationSettings
被调用并且不显示任何内容,而不是通过
将用户发送到设置应用程序UIApplication.shared.openURL(URL(string: UIApplicationOpenSettingsURLString)!)
我的代码有什么问题,我们如何解决?
我知道有些方法已被弃用,但我需要暂时和快速地修复它。
答案 0 :(得分:0)
我通过更新所有相关的弃用方法解决了这个问题。