views:

35

answers:

1

Does NSNotificationCenter use pointer equality or some other criteria (like isEqual: or hash:) to determine whether a notification should be sent to an observer?

+3  A: 

Pointer equality -- it only forwards notifications from the specific object that an observer is observing.

mipadi