Swift 4.0 та Xcode 9.0+:
Послати повідомлення (повідомлення):
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+:
Послати повідомлення (повідомлення):
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:
Надсилання (повідомлення) повідомлення
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 ...
Надсилання (повідомлення) повідомлення
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
}