vote up 0 vote down star

If the class is a custom class, after posting the notification, the selector corresponding to the observer is called twice.. Is there any better solution so that the selector is called only once?

flag

2 Answers

vote up 1 vote down check

If the observer class is registered for a notification by name, but not against a specific object, it will receive multiple messages, as it will be invoked every time the notification occurs, regardless of the originating object.

Likewise, if the observer is registered against a specific object, but not against a named notification, it will be messaged every time there is a notification concerning that object.

An alternative mechanism for being informed of changes in a distant state, is Key Value observing -http://developer.apple.com/documentation/Cocoa/Conceptual/KeyValueObserving/KeyValueObserving.html

link|flag
vote up 1 vote down

If the selector is called twice, you've probably registered for it twice.

link|flag
The problem is, There are two controls in the nib, which is customized to the same Class. and Since the observer is been registered in the awakeFromNib() of that Class, the selector is also called twice for a single postNotification. :( – lance Aug 26 at 13:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.