Swift 4.0 ve Xcode 9.0+:
Gönder (Gönder) Bildirimi:
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil)
VEYA
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil, userInfo: ["Renish":"Dadhaniya"])
Bildirim Alma (Alma):
NotificationCenter.default.addObserver(self, selector: #selector(self.methodOfReceivedNotification(notification:)), name: Notification.Name("NotificationIdentifier"), object: nil)
Alınan Bildirim için İşlev-Yöntem işleyicisi:
@objc func methodOfReceivedNotification(notification: Notification) {}
Swift 3.0 ve Xcode 8.0+:
Gönder (Gönder) Bildirimi:
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil)
Bildirim Alma (Alma):
NotificationCenter.default.addObserver(self, selector: #selector(YourClassName.methodOfReceivedNotification(notification:)), name: Notification.Name("NotificationIdentifier"), object: nil)
Alınan Bildirim için yöntem işleyici:
func methodOfReceivedNotification(notification: Notification) {
// Take Action on Notification
}
Bildirimi Kaldır:
deinit {
NotificationCenter.default.removeObserver(self, name: Notification.Name("NotificationIdentifier"), object: nil)
}
Swift 2.3 ve Xcode 7:
Bildirim Gönder
NSNotificationCenter.defaultCenter().postNotificationName("NotificationIdentifier", object: nil)
Bildirim Alma (Alma)
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(YourClassName.methodOfReceivedNotification(_:)), name:"NotificationIdentifier", object: nil)
Alınan Bildirim için yöntem işleyici
func methodOfReceivedNotification(notification: NSNotification){
// Take Action on Notification
}
Tarihi Xcode sürümleri için ...
Bildirim Gönder
NSNotificationCenter.defaultCenter().postNotificationName("NotificationIdentifier", object: nil)
Bildirim Alma (Alma)
NSNotificationCenter.defaultCenter().addObserver(self, selector: "methodOfReceivedNotification:", name:"NotificationIdentifier", object: nil)
Bildirimi Kaldır
NSNotificationCenter.defaultCenter().removeObserver(self, name: "NotificationIdentifier", object: nil)
NSNotificationCenter.defaultCenter().removeObserver(self) // Remove from all notifications being observed
Alınan Bildirim için yöntem işleyici
func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}
@Objc ile sınıfa veya hedef yönteme açıklama ekleyin
@objc private func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}
// Or
dynamic private func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}