I have class ParentClass
that observes an NSNotification. ParentClass handles the notification. ChildClass
inherits ParentClass and also handles the notification. Is the order in which the notifications are delivered deterministic?
In other words will ParentClass always handle the notification before ChildClass or vice versa?
It depends on which classes are instantiated and how, forming actual objects. It also depends on whether the subclass calls super for handling. Otherwise, as NSNotificationCenter's docs say, the order of objects that receive the notifications is random, and does NOT depend on wheher you're a subclass or superclass. Consider the following samples for better understanding: (several examples are needed as your explication is not entirely clear):
Example 1: two different objects
Example 2: subclass calls super