Can I pass nil for the object argument of -[NSNotificationCenter postNotificationName:object:] since the observers don't care who the sender is, or is it better practice to pass self for the object argument even though the observers aren't checking who sent the notification?

link|improve this question

63% accept rate
Passing nil is fine. – Rog Jun 18 '11 at 21:27
feedback

1 Answer

up vote 3 down vote accepted

Passing nil won't harm anything. It's just nice to be able to know what sent the notification, even if current observers don't need to know and don't check it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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