Swift 4.0 e Xcode 9.0+:
Enviar (Post) Notificação:
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil)
OU
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil, userInfo: ["Renish":"Dadhaniya"])
Receber (Obter) Notificação:
NotificationCenter.default.addObserver(self, selector: #selector(self.methodOfReceivedNotification(notification:)), name: Notification.Name("NotificationIdentifier"), object: nil)
Manipulador de método de função para notificação recebida:
@objc func methodOfReceivedNotification(notification: Notification) {}
Swift 3.0 e Xcode 8.0 ou superior:
Enviar (Post) Notificação:
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil)
Receber (Obter) Notificação:
NotificationCenter.default.addObserver(self, selector: #selector(YourClassName.methodOfReceivedNotification(notification:)), name: Notification.Name("NotificationIdentifier"), object: nil)
Manipulador de método para a notificação recebida:
func methodOfReceivedNotification(notification: Notification) {
// Take Action on Notification
}
Remover notificação:
deinit {
NotificationCenter.default.removeObserver(self, name: Notification.Name("NotificationIdentifier"), object: nil)
}
Swift 2.3 e Xcode 7:
Enviar (Post) Notificação
NSNotificationCenter.defaultCenter().postNotificationName("NotificationIdentifier", object: nil)
Receber (receber) notificação
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(YourClassName.methodOfReceivedNotification(_:)), name:"NotificationIdentifier", object: nil)
Manipulador de método para a notificação recebida
func methodOfReceivedNotification(notification: NSNotification){
// Take Action on Notification
}
Para versões históricas do Xcode ...
Enviar (Post) Notificação
NSNotificationCenter.defaultCenter().postNotificationName("NotificationIdentifier", object: nil)
Receber (receber) notificação
NSNotificationCenter.defaultCenter().addObserver(self, selector: "methodOfReceivedNotification:", name:"NotificationIdentifier", object: nil)
Remover notificação
NSNotificationCenter.defaultCenter().removeObserver(self, name: "NotificationIdentifier", object: nil)
NSNotificationCenter.defaultCenter().removeObserver(self) // Remove from all notifications being observed
Manipulador de método para a notificação recebida
func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}
Anote a classe ou o método de destino com @objc
@objc private func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}
// Or
dynamic private func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}