0

Is iOS NSNotification equivalent to Events in other systems? Contrary to sending message is it really non blocking the sender process ?

tipycalFlow
  • 7,594
  • 4
  • 34
  • 45
user310291
  • 36,946
  • 82
  • 271
  • 487
  • 1
    Yes, but the difference is you have a single instance of NSNotificationCenter, which broadcasts a NSNotification that can be caught application wide, unlike .net for example, where you declare a public event in your class and can subscribe for it only if you have an instance of this class. And yes it's not blocking the sender process. – graver Apr 19 '12 at 06:57

1 Answers1

1

NSNotification objects encapsulate information so that it can be broadcast to other objects by an NSNotificationCenter object.

Check out the following links.

What is NSNotification?

NSNotification in iphone sdk

Community
  • 1
  • 1
Keerthi.CK
  • 54
  • 2