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 7851261
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T19:07:35+00:00 2026-06-02T19:07:35+00:00

When using delegates, I usually only tell the next viewcontroller over in the UINavigationController

  • 0

When using delegates, I usually only tell the next viewcontroller over in the UINavigationController that I want to set self as the delegate. I do this in my prepareForSegue method:

- (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    [segue.destinationViewController setDelegate:self];
}

This has always worked great. However, I’m trying to tell a viewController two indexes or two views over in the navController, that I want to set self as the delegate. I’ve tried every way that I can think of define the viewController receiver that I want to send the setDelegate method to but nothing seems to be working. Here is one example that Ive tried:

    DateSelectViewController *dsvc = [[DateSelectViewController alloc] init];
    [dsvc setDelegate:self];

The method is never being delegated and I know it has to do with the way I’m setting the delegate because I’ve ruled out every other possibility. How can I do this correctly?

  • 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-02T19:07:36+00:00Added an answer on June 2, 2026 at 7:07 pm

    You cannot do that directly because that view controller doesn’t exist yet. What you can do is this in the next one along:

    [segue.destinationViewController setDelegate:self.delegate];
    

    If you have A -> B -> C

    in A you’d have your original code:

    - (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
    {
        [segue.destinationViewController setDelegate:self];
        // self == A
    }
    

    In B you’d have:

    - (void) prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
    {
        [segue.destinationViewController setDelegate:self.delegate];
        // self.delegate == A
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that it's possible to implicitly provide asynchronous interaction using: Asynchronous Delegates Asynchronous
This questions involves 2 different implementations of essentially the same code. First, using delegate
I am using App Delegate object in different classes. I want access it in
Is there any reason for making delegate when using EJB3? Because the only real
I am currently executing a long process asynchronously using delegates. this process could be
I have a problem that I solved using delegates, but now I am thinking
I am trying to sort a list using delegates but I am getting a
I was just trying to understand delegates using the following code. public class delegatesEx
Just a quick one: what are peoples thoughts on using Action delegates for public
Using a delegate I can call any function asynchronously. From the documentation I understand

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.