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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T14:05:27+00:00 2026-05-30T14:05:27+00:00

I have the problem in refreshing the table. I create the table like this

  • 0

I have the problem in refreshing the table. I create the table like this

for (int i = 0; i < 4; i++) 
{

DetailsTable = [[UITableView alloc] initWithFrame:CGRectMake(i*768, 45, 768, 1024) style:UITableViewStyleGrouped];
    DetailsTable.dataSource = self;
    DetailsTable.delegate = self;
    DetailsTable.tag = i + 1;
    [scrollView addSubview:DetailsTable];
    [DetailsTable release];
}

Whenever I am refreshing the table like this [DetailsTable reloadData]; it refresh the last table only. And other table is not getting refresh

How can refresh all table view in iphone

  • 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-30T14:05:28+00:00Added an answer on May 30, 2026 at 2:05 pm

    this is because in DetailsTable the last table reference is retain so that this occurs
    Try this
    add this in .h file

    NSMutableArray *tblArr;
    

    add this in .m file

    tblArr=[[NSMutableArray alloc] init];
    for (int i = 0; i < 4; i++) 
    {
        UITableView *DetailsTable = [[UITableView alloc] initWithFrame:CGRectMake(i*768, 45, 768, 1024) style:UITableViewStyleGrouped];
        DetailsTable.dataSource = self;
        DetailsTable.delegate = self;
        DetailsTable.tag = i + 1;
        [scrollView addSubview:DetailsTable];
        [tblArr addObject:DetailsTable];
        [DetailsTable release];
    }
    

    and when you want to relaod all table use this

    for (int i = 0; i < 4; i++) 
    {
        [(UITableView *)[tblArr objectAtIndex:i] reloadData];
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have problem compilin this code..can anyone tell whats wrong with the syntax CREATE
I have problem with ActionLink. I'd like to pass to my ActionLink parameter for
Hi I'm having problem refreshing my listview after Async operation. I have a simplecursoradapter,
I using multilanguage solution from this thread Multilanguage in WPF But i have problem
I have a problem refreshing a DataGridView control after Insert or Update . The
We got a MVC project running and we seem to have problem refreshing .less
I have a problem with my very simple chat. The page is constanly refreshing
I have a problem with one of my websites. http://www.weddingguest-book.com I only found this
I'm having problems refreshing .Net 2.0 with IIS 6. I have been able to
I have problem in some JavaScript that I am writing where the Switch statement

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.