在 swift iOS 中自动从设备检索应用推送令牌
Retrieve the app push token from the device automatically in swift iOS
是否可以在 iOS Swift 中自动或不注册推送通知而自动获取设备令牌(推送令牌)?
目前,我们在注册推送通知时获取设备令牌:
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
...
}
这不可能。我们无法自动从设备检索应用程序推送令牌,或者没有在 swift iOS
中注册推送通知
是否可以在 iOS Swift 中自动或不注册推送通知而自动获取设备令牌(推送令牌)?
目前,我们在注册推送通知时获取设备令牌:
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
...
}
这不可能。我们无法自动从设备检索应用程序推送令牌,或者没有在 swift iOS
中注册推送通知