NSNotificationCenter: Do objects receive notifications on the same thread they are posted?

Corey Floyd picture Corey Floyd · Jun 17, 2009 · Viewed 9.6k times · Source

I am interested in knowing whether I can expect the observing object's method to be pushed onto the stack before the posting object's method has been completed and removed.

Answer

Jarret Hardie picture Jarret Hardie · Jun 17, 2009

The short answer is yes... "Regular notification centers deliver notifications on the thread in which the notification was posted. Distributed notification centers deliver notifications on the main thread".

However, Apple has docs on this very subject that you may find helpful, and from which the above quote was pulled:

Notification Programming Topics: Delivering Notifications to Particular Threads