Device Token not received when registering for remote notifications in Swift

前端 未结 8 2083
太阳男子
太阳男子 2021-02-04 10:42

I somehow can not receive the device token when registering for remote notifications. I get the modal saying \"Do you want to allow App X to be able to send you notificaitons\",

8条回答
  •  遇见更好的自我
    2021-02-04 11:13

    Swift 5

    For Swift 5, I have used like this,

        let settings = UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil)
        application.registerUserNotificationSettings(settings)
    
        UIApplication.shared.registerForRemoteNotifications()
    

提交回复
热议问题