web-dev-qa-db-fra.com

Swift 4 - Numéro du centre de notifications de AddObserver

Je tombe en panne et je reçois une erreur unrecognized selector À chaque fois qu'un Notification arrive et que l'application tente d'exécuter sa méthode associée. Voici mon code - qui se trouve dans viewDidLoad:

let notificationCenter = NotificationCenter.default
notificationCenter.addObserver(self, selector: Selector(("sayHello")), name:NSNotification.Name(rawValue: "dataDownloadCompleted"), object: nil)

La méthode sayHello() est assez simple - elle ressemble à ceci:

func sayHello() {
    print("Hello")
}

J'ai vérifié que le Notification est posté avec succès et qu'il arrive avec succès - ce n'est donc pas le problème. Le crash se produit lorsque l'application cherche à agir dès l'arrivée de Notification - en exécutant la méthode sayHello(). Il continue à me donner cette erreur unrecognized selector.

Des idées que je fais mal? (D'ailleurs, cela fonctionnait parfaitement avec Swift 3 & Xcode 8, mais maintenant avec Swift 4 et Xcode 9, la syntaxe a changé [Xcode m'a guidé les correctifs de code nécessaires/mises à jour] - mais les blocages continuent à se produire.)

11
Sirab33

Vous pouvez améliorer votre code avec ces étapes:

extension Notification.Name {
    static let dataDownloadCompleted = Notification.Name(
       rawValue: "dataDownloadCompleted")
}

Et utilisez-le comme ceci:

let notificationCenter = NotificationCenter.default
notificationCenter.addObserver(self,
                               selector: #selector(YourClass.sayHello),
                               name: .dataDownloadCompleted,
                               object: nil)

Mais comme cela a déjà été souligné, le problème est résolu en passant à # sélecteur

29
Data Receiving - Add observer:

override func viewDidLoad() {
     super.viewDidLoad()
     NotificationCenter.default.addObserver(self, selector: #selector(yourfunction(notfication:)), name: .postNotifi, object: nil)
}

@objc func yourfunction(notfication: NSNotification) {
     print("xxx")
}

Sending Data - Post Notification:

override func viewWillDisappear(_ animated: Bool) {
      super.viewWillDisappear(animated)
      NotificationCenter.default.removeObserver(self, name: .postNotifi, object: nil)
}

extension Notification.Name {
      static let postNotifi = Notification.Name("postNotifi")
}
7
Giang

Swift 4.0 & Xcode 9.0 +:

Envoyer une notification (post):

NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil)

OR

NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil, userInfo: ["Renish":"Dadhaniya"])

Recevoir (obtenir) une notification:

NotificationCenter.default.addObserver(self, selector: #selector(self.methodOfReceivedNotification(notification:)), name: Notification.Name("NotificationIdentifier"), object: nil)

Gestionnaire de fonction-méthode pour la notification reçue:


@objc func methodOfReceivedNotification(notification: Notification) {}

Swift 3.0 & Xcode 8.0 +:

Envoyer une notification (post):


NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil)

Recevoir (obtenir) une notification:


NotificationCenter.default.addObserver(self, selector: #selector(YourClassName.methodOfReceivedNotification(notification:)), name: Notification.Name("NotificationIdentifier"), object: nil)

Gestionnaire de méthodes pour la notification reçue:

func methodOfReceivedNotification(notification: Notification) {
  // Take Action on Notification
}

Supprimer la notification:

deinit {
  NotificationCenter.default.removeObserver(self, name: Notification.Name("NotificationIdentifier"), object: nil)
}

Swift 2.3 & Xcode 7:

Envoyer une notification

NSNotificationCenter.defaultCenter().postNotificationName("NotificationIdentifier", object: nil)

Recevoir (recevoir) une notification


NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(YourClassName.methodOfReceivedNotification(_:)), name:"NotificationIdentifier", object: nil)

Gestionnaire de méthodes pour la notification reçue

func methodOfReceivedNotification(notification: NSNotification){
  // Take Action on Notification
}

Réf.: https://medium.com/@javedmultani16/notification-in-Swift-4-8b0db631f49d

0
Mr.Javed Multani