Swift 4.0 & Xcode 9.0+:
Benachrichtigung senden (posten):
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil)
ODER
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil, userInfo: ["Renish":"Dadhaniya"])
Benachrichtigung erhalten (erhalten):
NotificationCenter.default.addObserver(self, selector: #selector(self.methodOfReceivedNotification(notification:)), name: Notification.Name("NotificationIdentifier"), object: nil)
Funktionsmethoden-Handler für empfangene Benachrichtigung:
@objc func methodOfReceivedNotification(notification: Notification) {}
Swift 3.0 & Xcode 8.0+:
Benachrichtigung senden (posten):
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil)
Benachrichtigung erhalten (erhalten):
NotificationCenter.default.addObserver(self, selector: #selector(YourClassName.methodOfReceivedNotification(notification:)), name: Notification.Name("NotificationIdentifier"), object: nil)
Methodenhandler für empfangene Benachrichtigung:
func methodOfReceivedNotification(notification: Notification) {
// Take Action on Notification
}
Benachrichtigung entfernen:
deinit {
NotificationCenter.default.removeObserver(self, name: Notification.Name("NotificationIdentifier"), object: nil)
}
Swift 2.3 & Xcode 7:
Benachrichtigung senden (posten)
NSNotificationCenter.defaultCenter().postNotificationName("NotificationIdentifier", object: nil)
Benachrichtigung erhalten (erhalten)
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(YourClassName.methodOfReceivedNotification(_:)), name:"NotificationIdentifier", object: nil)
Methodenhandler für empfangene Benachrichtigung
func methodOfReceivedNotification(notification: NSNotification){
// Take Action on Notification
}
Für historische Xcode-Versionen ...
Benachrichtigung senden (posten)
NSNotificationCenter.defaultCenter().postNotificationName("NotificationIdentifier", object: nil)
Benachrichtigung erhalten (erhalten)
NSNotificationCenter.defaultCenter().addObserver(self, selector: "methodOfReceivedNotification:", name:"NotificationIdentifier", object: nil)
Benachrichtigung entfernen
NSNotificationCenter.defaultCenter().removeObserver(self, name: "NotificationIdentifier", object: nil)
NSNotificationCenter.defaultCenter().removeObserver(self) // Remove from all notifications being observed
Methodenhandler für empfangene Benachrichtigung
func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}
Kommentieren Sie entweder die Klasse oder die Zielmethode mit @objc
@objc private func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}
// Or
dynamic private func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}