unresolved swift xcode apple-push-notifications ios10 xcode8

swift - unresolved - UIUserNotificationSettings en desuso en iOS 10



push notifications ios swift 4 (1)

Registro de notificación debe implementar este código:

import UserNotifications UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .sound, .badge]) { (granted, error) in //Parse errors and track state }

Este resource contiene información adicional.

Esta pregunta ya tiene una respuesta aquí:

Estoy buscando la forma alternativa de implementar UIUserNotificationSettings en iOS 10.

La documentación de Apple ha dado el siguiente marco para el uso posterior. UNNotificationSettings en el enlace here .

¿Hay alguien que pueda ayudarme con el código de ejemplo para implementar lo siguiente usando UNNotificationSettings en lugar de UIUserNotificationSettings?

let notificationSettings = UIUserNotificationSettings( forTypes: [.Badge, .Sound, .Alert], categories: nil) application.registerUserNotificationSettings(notificationSettings)