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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T14:49:51+00:00 2026-06-04T14:49:51+00:00

I have the following config : A ViewController parentController containing a TableView parentTable with

  • 0

I have the following config :

A ViewController parentController containing a TableView parentTable with customized cells to display 2 labels in each of them.

A ViewController childController containing a TableView childTable. This view is displayed when the user clicks a cell of controllerParent, and childTable content depends on the selected parentController cell.
I use this method :

[self.navigationController pushViewController:controleurEnfant animated:YES];

Now when I click a cell in childTable, I come back to my previous view with this :

[self.navigationController popViewControllerAnimated:YES];

Of course I can easily get the index of the childTable’s row selected. But the only thing I don’t know is how to keep this data to use it in parentController when I come back there ?

Thanks for your help…

  • 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-04T14:49:53+00:00Added an answer on June 4, 2026 at 2:49 pm

    For this kind of problem you can use delegation

    Code from RayWenderlichs Tutorial:

    .h in your childViewController:

    @class ChildViewController;
    
    @protocol ChildViewControllerDelegate <NSObject>
    - (void)childViewControllerDidSelect:(id)yourData;
    @end
    
    @interface childViewController : UITableViewController
    
    @property (nonatomic, weak) id <ChildViewControllerDelegate> delegate;
    
    - (IBAction)cancel:(id)sender;
    - (IBAction)done:(id)sender;
    
    @end
    

    .m in childViewController

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
     [self.delegate childViewControllerDidSelect:myObject];
     [self.navigationController popViewControllerAnimated:YES];
    }
    

    in your parentViewController.h adopt the protocol

    @interface ParentViewController : UITableViewController <ChildViewControllerDelegate>
    

    and implement the delegate methods

    - (void)childViewControllerDidSelect:(id)yourData 
    {
        self.someProperty = yourData
    }
    

    and don’t forget to set the delegate before pushing :

    ...
    ChildViewController *vc  = [ChildViewController alloc] init];
    vc.delegate = self;
    [self.navigationController pushViewController:vc animated:YES];
    

    Here is some docu about the delegation pattern: Delegates and Data Sources

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using IIS V5.1. Integrated windows authentication I have a following web config:
I have the following setup: Web.config has customErrors mode=Off Global.Application_Error() event calls a custom
I have following test class @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = {/services-test-config.xml}) public class MySericeTest { @Autowired
Does anyone have any experience with the following fluent config error? faultString = An
Let's assume we have the following structure: index.php config.inc.php \ lib \ lib \
I have the following text in xml file: <Config Builder=LP Wizard> <Libraries> <Library Name=XCAMSource/>
I have the following directory structure: project/ .git/ ... app/ ... config/ initializers/ braintree.rb
I have a following structered DOM result, getting after a POST event: <root> <config>
Im trying to get debugging working without an app.config. I have the following code:
I have a the following server side app.config for a WCF service: <system.serviceModel> <bindings>

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.