【发布时间】:2019-02-28 23:55:24
【问题描述】:
对于 iOS 12,推送通知无法正常工作并在以下版本中工作
我的应用在 Appstore 中。推送通知在 iOS 11 中运行良好,但在 iOS 12 中无法正常工作。我没有收到 iOS 12 设备的任何推送通知。我已经检查了我的服务器中的设备令牌和证书。全部正确。我还检查了设置应用程序中的通知属性。一切都很好。但我没有收到任何通知。
这是我用于推送通知的代码。
你能告诉我会是什么问题吗?如何解决这个问题?
func registerForPushNotifications() {
if #available(iOS 10.0, *){
let center = UNUserNotificationCenter.current()
center.delegate = self
center.requestAuthorization(options:[.badge, .alert, .sound]) { (granted, error) in
if (granted)
{
UIApplication.shared.registerForRemoteNotifications()
}
else{
//Do stuff if unsuccessful...
UIApplication.shared.registerForRemoteNotifications()
}
// Enable or disable features based on authorization.
}
}
else
{
let types: UIUserNotificationType = [UIUserNotificationType.badge, UIUserNotificationType.alert, UIUserNotificationType.sound]
let settings: UIUserNotificationSettings = UIUserNotificationSettings( types: types, categories: nil )
UIApplication.shared.registerUserNotificationSettings( settings )
UIApplication.shared.registerForRemoteNotifications()
}
}
@available(iOS 10.0, *)
func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Void) {
let userInfo = response.notification.request.content.userInfo as NSDictionary
print(userInfo)
}
【问题讨论】:
-
@Anbu.karthik 推送通知在后台和前台的 iOS 12 版本以下均有效,此问题仅适用于 iOS 12。
-
给点时间,我会检查并更新你
-
您找到解决问题的方法了吗?
-
@SandeepBaddula 你找到解决办法了吗?
标签: ios swift apple-push-notifications ios12