user310291
user310291

Reputation: 38228

Is iOS NSNotification equivalent to Events?

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

Upvotes: 0

Views: 280

Answers (1)

Keerthi.CK
Keerthi.CK

Reputation: 54

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

Upvotes: 1

Related Questions