What is NSNotification?

Apple has provided an Observer Pattern in the Cocoa library called the NSNotificationCenter. The basic idea is that a listener registers with a broadcaster using some predefined protocol. At some later point, the broadcaster is told to notify all of its listeners, where it calls some function on each of its listeners and passes certain … Read more