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()
}
}
错误/警告行:
UIApplication.shared.registerForRemoteNotifications()
如何解决这个问题?

