Swift 4.0 et Xcode 9.0+:
Envoyer une notification (post):
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil)
OU
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 méthode de fonction pour la notification reçue:
@objc func methodOfReceivedNotification(notification: Notification) {}
Swift 3.0 et 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éthode 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 et Xcode 7:
Envoyer une notification (post)
NSNotificationCenter.defaultCenter().postNotificationName("NotificationIdentifier", object: nil)
Recevoir (obtenir) une notification
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(YourClassName.methodOfReceivedNotification(_:)), name:"NotificationIdentifier", object: nil)
Gestionnaire de méthode pour la notification reçue
func methodOfReceivedNotification(notification: NSNotification){
// Take Action on Notification
}
Pour les versions Xcode historiques ...
Envoyer une notification (post)
NSNotificationCenter.defaultCenter().postNotificationName("NotificationIdentifier", object: nil)
Recevoir (obtenir) une notification
NSNotificationCenter.defaultCenter().addObserver(self, selector: "methodOfReceivedNotification:", name:"NotificationIdentifier", object: nil)
Supprimer la notification
NSNotificationCenter.defaultCenter().removeObserver(self, name: "NotificationIdentifier", object: nil)
NSNotificationCenter.defaultCenter().removeObserver(self) // Remove from all notifications being observed
Gestionnaire de méthode pour la notification reçue
func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}
Annotez la classe ou la méthode cible avec @objc
@objc private func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}
// Or
dynamic private func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}