Swift:Notification Observer Using NSNotificationCenter
From Hawk Wiki
Listen Notification in Wwift
func tweetSent(notification: NSNotification) { let newTweet:Dictionary<String, Tweet> = notification.userInfo as Dictionary<String, Tweet> } NSNotificationCenter.defaultCenter().addObserver(self, selector: "tweetSent:", name: "newTweetNotification", object: nil)
Send/Post Notification in Wwift
var userInfo: Dictionary<String, Tweet> = ["tweet": newTweet] NSNotificationCenter.defaultCenter().postNotificationName("newTweetNotification", object: nil, userInfo: userInfo)
Remove Notification Bbserver
deinit { NSNotificationCenter.defaultCenter().removeObserver(self) }