Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7077867
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:28:35+00:00 2026-05-28T06:28:35+00:00

I have class ParentClass that observes an NSNotification. ParentClass handles the notification. ChildClass inherits

  • 0

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?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T06:28:35+00:00Added an answer on May 28, 2026 at 6:28 am

    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

    ParentClass *obj1 = [[ParentClass alloc] init];
    ChildClass *obj2 = [[ChildClass alloc] init];
    // register both of them as listeners for NSNotificationCenter
    // ...
    // and now their order of receiving the notifications is non-deterministic, as they're two different instances
    

    Example 2: subclass calls super

    @implementation ParentClass
    
    - (void) handleNotification:(NSNotification *)not
    {
        // handle notification
    }
    
    @end
    
    @ipmlementation ChildClass
    
    - (void) handleNotification:(NSNotification *)not
    {
        // call super
        [super handleNotification:not];
        // actually handle notification
        // now the parent class' method will be called FIRST, as there's one actual instace, and ChildClass first passes the method onto ParentClass
    }
    
    @end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class ChildClass that extends the class ParentClass. Rather than completely replace
I have a couple classes that look like this public class ParentClass { public
I have a class Page that creates an instance of DB , which is
I have 1 abstract class that is calling a static method which up until
I have a parent class that handles all the UITableview persistent data management and
I have a private method def __pickSide(self): in a parent class that I would
In Django, when you have a parent class and multiple child classes that inherit
Let's have the following class hierarchy: public class ParentClass implements SomeInterface { } public
I have the following Model pattern: public abstract class PARENTCLASS {...} public class CHILD_A_CLASS
I have a parent class which contains a child object. I am using set

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.