Registrando notificações push no Xcode 8 / Swift 3.0?


121

Estou tentando fazer meu aplicativo funcionar no Xcode 8.0 e estou com um erro. Eu sei que esse código funcionou bem nas versões anteriores do swift, mas estou assumindo que o código para isso foi alterado na nova versão. Aqui está o código que estou tentando executar:

let settings = UIUserNotificationSettings(forTypes: [.Sound, .Alert, .Badge], categories: nil)     
UIApplication.sharedApplication().registerUserNotificationSettings(settings)
UIApplication.shared().registerForRemoteNotifications()

O erro que estou recebendo é "Os rótulos de argumento '(paraTipos :, categorias :)' não correspondem a nenhuma sobrecarga disponível"

Existe um comando diferente que eu poderia tentar fazer funcionar?


2
Eu escrevi um guia sobre como fazer exatamente isso: eladnava.com/…
Elad Nava

Respostas:


307

Importe a UserNotificationsestrutura e adicione o UNUserNotificationCenterDelegateem AppDelegate.swift

Solicitar permissão do usuário

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {


        let center = UNUserNotificationCenter.current()
        center.requestAuthorization(options:[.badge, .alert, .sound]) { (granted, error) in
            // Enable or disable features based on authorization.
        }
        application.registerForRemoteNotifications()
        return true
}

Obtendo o token do dispositivo

func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {

    let deviceTokenString = deviceToken.reduce("", {$0 + String(format: "%02X", $1)})
    print(deviceTokenString)
}

Em caso de erro

func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {

        print("i am not available in simulator \(error)")
}

Caso você precise conhecer as permissões concedidas

UNUserNotificationCenter.current().getNotificationSettings(){ (settings) in

            switch settings.soundSetting{
            case .enabled:

                print("enabled sound setting")

            case .disabled:

                print("setting has been disabled")

            case .notSupported:
                print("something vital went wrong here")
            }
        }

1
Eu recebo o erro no swift 2.3: UNUserNotificationCenter não tem nenhum membro atual
Async-

Hay que você pode fornecer a salvo em Objective C
Ayaz

Apenas uma observação, não retorna mais o token do dispositivo. Pelo menos no meu caso, apenas retorna "32 bytes"
Brian F Leighty

1
@ Async- Você não está vendo atual () porque ele só está trabalhando em Swift 3.
Allen

4
@PavlosNicolaou Importar a estrutura UserNotifications
Anish Parajuli 웃

48
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {

    if #available(iOS 10, *) {

        //Notifications get posted to the function (delegate):  func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: () -> Void)"


        UNUserNotificationCenter.current().requestAuthorization(options: [.alert, .badge, .sound]) { (granted, error) in

            guard error == nil else {
                //Display Error.. Handle Error.. etc..
                return
            }

            if granted {
                //Do stuff here..

                //Register for RemoteNotifications. Your Remote Notifications can display alerts now :)
                DispatchQueue.main.async {
                    application.registerForRemoteNotifications()
                }
            }
            else {
                //Handle user denying permissions..
            }
        }

        //Register for remote notifications.. If permission above is NOT granted, all notifications are delivered silently to AppDelegate.
        application.registerForRemoteNotifications()
    }
    else {
        let settings = UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil)
        application.registerUserNotificationSettings(settings)
        application.registerForRemoteNotifications()
    }

    return true
}

Qual é o benefício adicional dessa nova estrutura? O que eu vejo aqui é uma abordagem usando 'completionHandler mais de delegado' e, em seguida, a tomada de decisão é dado a você imediatamente: erro, concedido, ou notGranted .... Em 6 <iOS <10 que tinha que fazer application.isRegisteredForRemoteNotifications()para ver se é concedido e use outro método delegado para o caso de ocorrer um erro. Certo? Algo mais?
mel

por que o seu é diferente da resposta aceita? Ele tem um application.registerForRemoteNotifications() após o seucenter.requestAuthorization
Honey

1
@Mel; Isso é adicionado se você deseja ativar as notificações "Remotas". Quando escrevi minha resposta, não havia outra resposta e o @OP não especificou se eles queriam suporte remoto, local ou iOS 10, por isso adicionei o máximo que pude. Nota: Você não deve se registrar no RemoteNotifications até que o usuário tenha concedido acesso (caso contrário, todas as notificações remotas serão entregues silenciosamente [a menos que seja isso que você deseja] - sem pop-ups). Além disso, a vantagem da nova API é que ela suporta anexos. Em outras palavras, você pode adicionar GIFs e outras imagens, vídeos, etc. às suas notificações.
Brandon

3
No fechamento, você vai precisar para realizar UI tarefas relacionadas no segmento principal ... DispatchQueue.main.async {... fazer coisas aqui ...}
Chris Allinson

1
Benefício desta solução quando o uso não em AppDelegate fazer mesma coisa em código
Codenator81

27
import UserNotifications  

Em seguida, vá para o editor de projeto do seu destino e, na guia Geral, procure a seção Frameworks e Bibliotecas Vinculadas.

Clique em + e selecione UserNotifications.framework:

// iOS 12 support
if #available(iOS 12, *) {  
    UNUserNotificationCenter.current().requestAuthorization(options:[.badge, .alert, .sound, .provisional, .providesAppNotificationSettings, .criticalAlert]){ (granted, error) in }
    application.registerForRemoteNotifications()
}

// iOS 10 support
if #available(iOS 10, *) {  
    UNUserNotificationCenter.current().requestAuthorization(options:[.badge, .alert, .sound]){ (granted, error) in }
    application.registerForRemoteNotifications()
}
// iOS 9 support
else if #available(iOS 9, *) {  
    UIApplication.shared.registerUserNotificationSettings(UIUserNotificationSettings(types: [.badge, .sound, .alert], categories: nil))
    UIApplication.shared.registerForRemoteNotifications()
}
// iOS 8 support
else if #available(iOS 8, *) {  
    UIApplication.shared.registerUserNotificationSettings(UIUserNotificationSettings(types: [.badge, .sound, .alert], categories: nil))
    UIApplication.shared.registerForRemoteNotifications()
}
// iOS 7 support
else {  
    application.registerForRemoteNotifications(matching: [.badge, .sound, .alert])
}

Usar métodos de delegação de notificação

// Called when APNs has assigned the device a unique token
func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {  
    // Convert token to string
    let deviceTokenString = deviceToken.reduce("", {$0 + String(format: "%02X", $1)})
    print("APNs device token: \(deviceTokenString)")
}

// Called when APNs failed to register the device for push notifications
func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {  
    // Print the error to console (you should alert the user that registration failed)
    print("APNs registration failed: \(error)")
}

Para receber notificação por push

func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
    completionHandler(UIBackgroundFetchResult.noData)
}

A configuração de notificações push está ativando o recurso no Xcode 8 para seu aplicativo. Basta ir ao editor do projeto para o seu destino e clicar na guia Recursos . Procure por notificações push e alterne seu valor para ON .

Verifique o link abaixo para obter mais métodos de delegação de notificação

Manipulando notificações locais e remotas UIApplicationDelegate - Manipulando notificações locais e remotas

https://developer.apple.com/reference/uikit/uiapplicationdelegate


20

Eu tive problemas com as respostas aqui ao converter o objeto Data do deviceToken em uma string para enviar ao meu servidor com o beta atual do Xcode 8. Especialmente aquele que estava usando o deviceToken.description como em 8.0b6 que retornaria "32 bytes" que não é muito útil :)

Isto é o que funcionou para mim...

Crie uma extensão em Data para implementar um método "hexString":

extension Data {
    func hexString() -> String {
        return self.reduce("") { string, byte in
            string + String(format: "%02X", byte)
        }
    }
}

E use isso quando receber o retorno de chamada do registro para notificações remotas:

func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
    let deviceTokenString = deviceToken.hexString()
    // Send to your server here...
}

8
Eu também tive o problema "32 bytes". Ótima solução, você pode fazer a conversão on-line sem criar uma extensão. Assim: let deviceTokenString = deviceToken.reduce("", {$0 + String(format: "%02X", $1)})
Alain Stulz

1
Absurdo que não há solução proveniente da própria API
Aviel Gross

1
Sim, sempre foi muito estranho que API .. surpreendido eles não corrigi-lo ao fazer o novo quadro notificações em iOS10
tomwilson

17

No iOS10, em vez do seu código, você deve solicitar uma autorização para notificação com o seguinte: (Não se esqueça de adicionar o UserNotificationsFramework)

if #available(iOS 10.0, *) {
        UNUserNotificationCenter.current().requestAuthorization([.alert, .sound, .badge]) { (granted: Bool, error: NSError?) in
            // Do something here
        }
    }

Além disso, o código correto para você é (use na elsecondição anterior, por exemplo):

let setting = UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil)
UIApplication.shared().registerUserNotificationSettings(setting)
UIApplication.shared().registerForRemoteNotifications()

Por fim, verifique se Push Notificationestá ativado em target-> Capabilities-> Push notification. (ative On)


1
veja: Página 73 do Apple Doc aqui
tsnkff 22/06/16

2
Muito obrigado pela resposta! No entanto, usando o código, está dizendo "Uso do identificador não resolvido 'UNUserNotificationCenter'"
Asher Hawthorne

E muito obrigado pela documentação, blablabla! Eu não vi isso no site deles, fico feliz que ele exista. : D
Asher Hawthorne

4
Espera, acho que entendi! Só tive que importar a estrutura de notificações. XD
Asher Hawthorne

1
Sim. Vou editar minha resposta para adicionar isso para o futuro leitor. Além disso, leia sobre as novas notificações, existem muito mais poderosas e interativas agora. :)
tsnkff

8

Bem, este trabalho para mim. Primeiro no AppDelegate

import UserNotifications

Então:

   func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
        // Override point for customization after application launch.
        registerForRemoteNotification()
        return true
    }

    func registerForRemoteNotification() {
        if #available(iOS 10.0, *) {
            let center  = UNUserNotificationCenter.current()
            center.delegate = self
            center.requestAuthorization(options: [.sound, .alert, .badge]) { (granted, error) in
                if error == nil{
                    UIApplication.shared.registerForRemoteNotifications()
                }
            }
        }
        else {
            UIApplication.shared.registerUserNotificationSettings(UIUserNotificationSettings(types: [.sound, .alert, .badge], categories: nil))
            UIApplication.shared.registerForRemoteNotifications()
        }
    }

Para obter o devicetoken:

  func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {

       let deviceTokenString = deviceToken.reduce("", {$0 + String(format: "%02X", $1)})

}

5

Atenção, você deve usar o thread principal para esta ação.

let center = UNUserNotificationCenter.current()
center.requestAuthorization(options:[.badge, .alert, .sound]) { (granted, error) in
        if granted {
            DispatchQueue.main.async(execute: {
                UIApplication.shared.registerForRemoteNotifications()
            })
        }
    }

2

Primeiro , ouça o status de notificação do usuário, ou seja, registerForRemoteNotifications()para obter o token do dispositivo APNs;
Segundo , solicite autorização. Ao ser autorizado pelo usuário, o deviceToken será enviado ao ouvinte, o AppDelegate;
Terceiro , relate o token do dispositivo ao seu servidor.

extension AppDelegate {
    /// 1. 监听 deviceToken
    UIApplication.shared.registerForRemoteNotifications()

    /// 2. 向操作系统索要推送权限(并获取推送 token)
    static func registerRemoteNotifications() {
        if #available(iOS 10, *) {
            let uc = UNUserNotificationCenter.current()
            uc.delegate = UIApplication.shared.delegate as? AppDelegate
            uc.requestAuthorization(options: [.alert, .badge, .sound]) { (granted, error) in
                if let error = error { // 无论是拒绝推送,还是不提供 aps-certificate,此 error 始终为 nil
                    print("UNUserNotificationCenter 注册通知失败, \(error)")
                }
                DispatchQueue.main.async {
                    onAuthorization(granted: granted)
                }
            }
        } else {
            let app = UIApplication.shared
            app.registerUserNotificationSettings(UIUserNotificationSettings(types: [.badge, .sound, .alert], categories: nil)) // 获取用户授权
        }
    }

    // 在 app.registerUserNotificationSettings() 之后收到用户接受或拒绝及默拒后,此委托方法被调用
    func application(_ app: UIApplication, didRegister notificationSettings: UIUserNotificationSettings) {
        // 已申请推送权限,所作的检测才有效
        // a 征询推送许可时,用户把app切到后台,就等价于默拒了推送
        // b 在系统设置里打开推送,但关掉所有形式的提醒,等价于拒绝推送,得不token,也收不推送
        // c 关掉badge, alert和sound 时,notificationSettings.types.rawValue 等于 0 和 app.isRegisteredForRemoteNotifications 成立,但能得到token,也能收到推送(锁屏和通知中心也能看到推送),这说明types涵盖并不全面
        // 对于模拟器来说,由于不能接收推送,所以 isRegisteredForRemoteNotifications 始终为 false
       onAuthorization(granted: app.isRegisteredForRemoteNotifications)
    }

    static func onAuthorization(granted: Bool) {
        guard granted else { return }
        // do something
    }
}

extension AppDelegate {
    func application(_ app: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
        //
    }

    // 模拟器得不到 token,没配置 aps-certificate 的项目也得不到 token,网络原因也可能导致得不到 token
    func application(_ app: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
        //
    }
}

como adicionar várias notificações?
ArgaPK 5/0318

@ArgaPK, Para enviar notificações por push é o que a plataforma do servidor faz.
precisa saber é o seguinte

0

A resposta do ast1 é muito simples e útil. Funciona para mim, muito obrigado. Eu só quero apontar aqui, para que as pessoas que precisam dessa resposta possam encontrá-la facilmente. Então, aqui está o meu código para registrar notificações locais e remotas (push).

    //1. In Appdelegate: didFinishLaunchingWithOptions add these line of codes
    let mynotif = UNUserNotificationCenter.current()
    mynotif.requestAuthorization(options: [.alert, .sound, .badge]) {(granted, error) in }//register and ask user's permission for local notification

    //2. Add these functions at the bottom of your AppDelegate before the last "}"
    func application(_ application: UIApplication, didRegister notificationSettings: UNNotificationSettings) {
        application.registerForRemoteNotifications()//register for push notif after users granted their permission for showing notification
}
    func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
    let tokenString = deviceToken.reduce("", {$0 + String(format: "%02X", $1)})
    print("Device Token: \(tokenString)")//print device token in debugger console
}
    func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
    print("Failed to register: \(error)")//print error in debugger console
}

0

Simplesmente faça o seguinte em didFinishWithLaunching::

if #available(iOS 10.0, *) {

    let center = UNUserNotificationCenter.current()

    center.delegate = self
    center.requestAuthorization(options: []) { _, _ in
        application.registerForRemoteNotifications()
    }
}

Lembre-se da declaração de importação:

import UserNotifications

Eu acredito que essa deve ser a resposta aceita. Parece correto chamar registerForRemoteNotifications()o manipulador de conclusão de requestAuthorization(). Você pode até querer cercar registerForRemoteNotifications()com uma if granteddeclaração: center.requestAuthorization(options:[.badge, .alert, .sound]) { (granted, error) in if granted { UIApplication.shared.registerForRemoteNotifications() } }
Bocaxica

-1

Dê uma olhada neste código comentado:

import Foundation
import UserNotifications
import ObjectMapper

class AppDelegate{

    let center = UNUserNotificationCenter.current()
}

extension AppDelegate {

    struct Keys {
        static let deviceToken = "deviceToken"
    }

    // MARK: - UIApplicationDelegate Methods
    func application(_: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {

        if let tokenData: String = String(data: deviceToken, encoding: String.Encoding.utf8) {
            debugPrint("Device Push Token \(tokenData)")
        }

        // Prepare the Device Token for Registration (remove spaces and < >)
        setDeviceToken(deviceToken)
    }

    func application(_: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: Error) {
        debugPrint(error.localizedDescription)
    }

    // MARK: - Private Methods
    /**
     Register remote notification to send notifications
     */
    func registerRemoteNotification() {

        center.requestAuthorization(options: [.alert, .sound, .badge]) { (granted, error) in

            // Enable or disable features based on authorization.
            if granted  == true {

                DispatchQueue.main.async {
                    UIApplication.shared.registerForRemoteNotifications()
                }
            } else {
                debugPrint("User denied the permissions")
            }
        }
    }

    /**
     Deregister remote notification
     */
    func deregisterRemoteNotification() {
        UIApplication.shared.unregisterForRemoteNotifications()
    }

    func setDeviceToken(_ token: Data) {
        let token = token.map { String(format: "%02.2hhx", arguments: [$0]) }.joined()
        UserDefaults.setObject(token as AnyObject?, forKey: “deviceToken”)
    }

    class func deviceToken() -> String {
        let deviceToken: String? = UserDefaults.objectForKey(“deviceToken”) as? String

        if isObjectInitialized(deviceToken as AnyObject?) {
            return deviceToken!
        }

        return "123"
    }

    func isObjectInitialized(_ value: AnyObject?) -> Bool {
        guard let _ = value else {
                return false
         }
            return true
    }
}

extension AppDelegate: UNUserNotificationCenterDelegate {

    func userNotificationCenter(_ center: UNUserNotificationCenter, willPresent notification: UNNotification, withCompletionHandler completionHandler: @escaping(UNNotificationPresentationOptions) -> Swift.Void) {

        ("\(notification.request.content.userInfo) Identifier: \(notification.request.identifier)")

        completionHandler([.alert, .badge, .sound])
    }

    func userNotificationCenter(_ center: UNUserNotificationCenter, didReceive response: UNNotificationResponse, withCompletionHandler completionHandler: @escaping() -> Swift.Void) {

        debugPrint("\(response.notification.request.content.userInfo) Identifier: \(response.notification.request.identifier)")

    }
}

Deixe-me saber se há algum problema!

Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.