Swift 4.0 i Xcode 9.0+:
Wyślij (Post) Powiadomienie:
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil)
LUB
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil, userInfo: ["Renish":"Dadhaniya"])
Otrzymuj (otrzymuj) powiadomienie:
NotificationCenter.default.addObserver(self, selector: #selector(self.methodOfReceivedNotification(notification:)), name: Notification.Name("NotificationIdentifier"), object: nil)
Moduł obsługi funkcji dla otrzymanego powiadomienia:
@objc func methodOfReceivedNotification(notification: Notification) {}
Swift 3.0 i Xcode 8.0+:
Wyślij (Post) Powiadomienie:
NotificationCenter.default.post(name: Notification.Name("NotificationIdentifier"), object: nil)
Otrzymuj (otrzymuj) powiadomienie:
NotificationCenter.default.addObserver(self, selector: #selector(YourClassName.methodOfReceivedNotification(notification:)), name: Notification.Name("NotificationIdentifier"), object: nil)
Procedura obsługi otrzymanego powiadomienia:
func methodOfReceivedNotification(notification: Notification) {
// Take Action on Notification
}
Usuń powiadomienie:
deinit {
NotificationCenter.default.removeObserver(self, name: Notification.Name("NotificationIdentifier"), object: nil)
}
Swift 2.3 i Xcode 7:
Wyślij (post) powiadomienie
NSNotificationCenter.defaultCenter().postNotificationName("NotificationIdentifier", object: nil)
Otrzymuj (otrzymuj) powiadomienie
NSNotificationCenter.defaultCenter().addObserver(self, selector: #selector(YourClassName.methodOfReceivedNotification(_:)), name:"NotificationIdentifier", object: nil)
Procedura obsługi otrzymanego powiadomienia
func methodOfReceivedNotification(notification: NSNotification){
// Take Action on Notification
}
Dla historycznych wersji Xcode ...
Wyślij (post) powiadomienie
NSNotificationCenter.defaultCenter().postNotificationName("NotificationIdentifier", object: nil)
Otrzymuj (otrzymuj) powiadomienie
NSNotificationCenter.defaultCenter().addObserver(self, selector: "methodOfReceivedNotification:", name:"NotificationIdentifier", object: nil)
Usuń powiadomienie
NSNotificationCenter.defaultCenter().removeObserver(self, name: "NotificationIdentifier", object: nil)
NSNotificationCenter.defaultCenter().removeObserver(self) // Remove from all notifications being observed
Procedura obsługi otrzymanego powiadomienia
func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}
Adnotuj klasę lub metodę docelową za pomocą @objc
@objc private func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}
// Or
dynamic private func methodOfReceivedNotification(notification: NSNotification) {
// Take Action on Notification
}