Add and remove observer for name

suggest change
// Add observer
let observer = NSNotificationCenter.defaultCenter().addObserverForName("nameOfTheNotification", object: nil, queue: nil) { (notification) in
    // Do operations with the notification in this block
}

// Remove observer
NSNotificationCenter.defaultCenter().removeObserver(observer)

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents