Preguntas etiquetadas con unusernotificationcenter


7
UIApplication.registerForRemoteNotifications () se debe llamar solo desde el hilo principal
Xcode 9 (iOS 11) me muestra un error / advertencia al registrarme para la notificación Push (remota). Aquí hay un mensaje de error Y aquí está el código, lo intenté: let center = UNUserNotificationCenter.current() center.delegate = self center.requestAuthorization(options: [.sound, .alert, .badge]) { (granted, error) in if error == nil{ UIApplication.shared.registerForRemoteNotifications() …
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.