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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T17:13:34+00:00 2026-06-13T17:13:34+00:00

I want to change the data of two rows in two different sections when

  • 0

I want to change the data of two rows in two different sections when one of them is selected so that they will have the same answer. But it is not working:

   NSIndexPath *indexPath1 = [NSIndexPath indexPathForRow:row1 inSection:section1];
    cell = [self.tableView cellForRowAtIndexPath:indexPath1];
    //DO SOMETHING WITH CELL LABEL


    NSIndexPath *indexPath2 = [NSIndexPath indexPathForRow:row2 inSection:section2];
    cell = [self.tableView cellForRowAtIndexPath:indexPath2];
    //MAKE THIS CELL LABEL SAME AS THE LAST ONE

It doesn’t work if the second cell is in a different section! Any suggestion?

  • 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-13T17:13:35+00:00Added an answer on June 13, 2026 at 5:13 pm

    You will get a nil from cellForRowAtIndexPath: if one of the cells isn’t visible at the moment.
    You should therefore get the needed entry from your data-model, not from the UI.
    Change the needed information there:

    NSArray *section1Data = [self.dataModell objectAtIndex:section1];
    NSDictionary *dataObject1 = [section1Data objectAtIndex:row1];
    [dataObject1 setValue:@"My new Text." forKey:@"theTextPropertyKey"];
    
    NSArray *section2Data = [self.dataModell objectAtIndex:section2];
    NSDictionary *dataObject2 = [section1Data objectAtIndex:row2];
    [dataObject2 setValue:@"My new Text." forKey:@"theTextPropertyKey"];
    

    Then reload the needed cells in the UI:

    NSArray *indexPaths = @[indexPath1, indexPath2];
    [self.tableView reloadRowsAtIndexPaths:indexPaths];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a JSON-like data structure (which I don't want to change) that is
I want to change the order of two rows in a table. I have
I have two arrays of System.Data.DataRow objects which I want to compare. The rows
i have many div's with the same background image and i want change this
Summary: My company has two different spreadsheets with many policies on each. They want
I have a table of data that contains about 260 rows. Each of these
I want to change data on listview runtime after button click... here is my
I want to dynamically change the data-href for the fb comments plugin below based
I have an array defined as; static double Temp_data[TABLE_SIZE]; I want to change the
I have a RadioButtnList. I want change body background color based on radio button

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.