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

  • Home
  • SEARCH
  • 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 8153077
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T15:54:04+00:00 2026-06-06T15:54:04+00:00

I think I understand the logic behind a delegate. I got more the problem

  • 0

I think I understand the logic behind a delegate. I got more the problem to use it. How many steps are involved? Do I have to use existing delegates? Or can I use my one ones?

In my example I got the AppDelegate that created many views (Objects / View Controllers) of the same type. Each view should somehow call a method on the AppDelegate to close itself. This would happen when a button within the view is touched. The method call would include the reference of the view (self).

So far I know from other languages responders, event listeners and so on. They are so simple to use.

Can anybody help me. I just found massive examples with a lot of code in the web. It can’t be that hard to just call a parent in Objective C.

  • 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-06-06T15:54:07+00:00Added an answer on June 6, 2026 at 3:54 pm

    I think you should use for this the NSNotificationCenter

    in you AppDelegate.m

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
    ...
    ...
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(buttonPushed:) name:@"ButtonPushedNotification" object:nil];
    }
    
    - (void)applicationWillTerminate:(UIApplication *)application
    {
    ...
    ...
    [[NSNotificationCenter defaultCenter] removeObserver:self];
    }
    

    this is the selector it will be called when the notification happens (we are still in the AppDelegate.m)

    - (void)buttonPushed:(NSNotification *)notification {
    NSLog(@"the button pushed...");
    }
    

    and in the ViewController.m when the button pushed (inside the method), you should post a notification like this:

    {
    ...
    [[NSNotificationCenter defaultCenter] postNotificationName:@"ButtonPushedNotification" object:nil];
    ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on Euler #3 ( http://projecteuler.net/problem=3 ). I think I've got the logic
I think understand the idea of duck typing, and would like to use it
I am trying to understand the concept behind logic-less temlpates, but I'm finding myself
I am trying to understand programming logic behind the beans of Spring. In examples
I think I understand business logic layer and data access layer, but what is
I think I understand the basic principals of T4 but I'm having a hard
I think I understand strong typing , but every time I look for examples
I think I understand the happened-before relationship for single variables. If I write a
I think I understand OSPF - it is Link-State routing, with a domain split
I understand the regular fixed-point type combinator and I think I understand the higher-order

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.