Xcode 9(iOS 11)在注册推(远程)通知时显示错误/警告。
下面是错误消息
这是密码,我试过了:
let center = UNUserNotificationCenter.current()
center.delegate = self
center.requestAuthorization(options: [.sound, .alert, .badge]) { (granted, error) in
if error == nil{
UIApplication.shared.registerForRemoteNotifications()
}
}
错误/警告线:
RegisterForRemoteNotification ()
如何解决这个问题?