Swift 4.0 и Xcode 9.0+:
Отправить (Post) уведомление:
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil)
ИЛИ
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil, userInfo: ["Renish":"Dadhaniya"])
Получить (получить) уведомление:
NotificationCenter.default.addObserver(self, selector: #selector(self.methodOfReceivedNotification(notification:)), name: Notification.Name("NotificationIdentifier"), object: nil)
Обработчик метода-функции для полученного уведомления:
@objc func methodOfReceivedNotification(notification: Notification) {}
Swift 3.0 и Xcode 8.0+:
Отправить (Post) уведомление:
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil)
Получить (получить) уведомление:
NotificationCenter.default.addObserver(self, selector: #selector(YourClassName.methodOfReceivedNotification(notification:)), name: Notification.Name("NotificationIdentifier"), object: nil)
Обработчик метода для полученного уведомления:
func methodOfReceivedNotification(notification: Notification) {
// Take Action on Notification
}
Удалить уведомление:
deinit {
NotificationCenter.default.removeObserver(self, name: Notification.Name("NotificationIdentifier"), object: nil)
}
Swift 2.3 и Xcode 7:
Отправить (Post) уведомление
NSNotificationCenter.defaultCenter().postNotificationName("NotificationIdentifier", object: nil)
Получить (Получить) Уведомление
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(YourClassName.methodOfReceivedNotification(_:)), name:"NotificationIdentifier", object: nil)
Обработчик метода для полученного уведомления
func methodOfReceivedNotification(notification: NSNotification){
// Take Action on Notification
}
Для исторических версий Xcode ...
Отправить (Post) уведомление
NSNotificationCenter.defaultCenter().postNotificationName("NotificationIdentifier", object: nil)
Получить (Получить) Уведомление
NSNotificationCenter.defaultCenter().addObserver(self, selector: "methodOfReceivedNotification:", name:"NotificationIdentifier", object: nil)
Удалить уведомление
NSNotificationCenter.defaultCenter().removeObserver(self, name: "NotificationIdentifier", object: nil)
NSNotificationCenter.defaultCenter().removeObserver(self) // Remove from all notifications being observed
Обработчик метода для полученного уведомления
func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}
Аннотируйте либо класс, либо целевой метод с помощью @objc
@objc private func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}
// Or
dynamic private func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}