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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:30:14+00:00 2026-05-26T20:30:14+00:00

I am trying to fill a table view with an array, but I want

  • 0

I am trying to fill a table view with an array, but I want two sections, and in the first section I want to display the imformation from indexpath.row == 0 to indexpath.row == 4 and in the second section the information from indexpath.row == 5 to indexpath.row == 9. How can I do that? I have this code for the second section:

 if (indexPath.section == 1){
        static NSString *CellIdentifier = @"LazyTableCell";
        static NSString *PlaceholderCellIdentifier = @"PlaceholderCell";
        int nodeCount = [self.entries count];
        UITableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
                                       reuseIdentifier:CellIdentifier] autorelease];
        if (nodeCount > 0)
        {
            if (indexPath.row > 4) {

                AppRecord *appRecord = [self.entries objectAtIndex:indexPath.row];
                cell.textLabel.text = appRecord.artist;
                cell.detailTextLabel.text = appRecord.appName;
                if (!appRecord.appIcon)
                {
                    if (self.tableView.dragging == NO && self.tableView.decelerating == NO)
                    {
                        [self startIconDownload:appRecord forIndexPath:indexPath];
                    }
                    cell.imageView.image = [UIImage imageNamed:@"Placeholder.png"];               
                }
                else
                {
                    UIImage *image = appRecord.appIcon;
                    CGSize itemSize = CGSizeMake(83.0, 48.0);
                    UIGraphicsBeginImageContext(itemSize);
                    CGRect imageRect = CGRectMake(0.0, 0.0, 83.0, 48.0);
                    [image drawInRect:imageRect];
                    appRecord.appIcon = UIGraphicsGetImageFromCurrentImageContext();
                    UIGraphicsEndImageContext();
                    cell.imageView.image = appRecord.appIcon;    
                }


        }
        return cell;  
    }
}
  • 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-26T20:30:15+00:00Added an answer on May 26, 2026 at 8:30 pm

    set the number of section in this function

    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
       return 2;
    }
    

    Perhaps you also want to implement

    - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
    {
        return @"section title";
    }
    

    set the number of lines in the following function

    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
    {
       return 5; // since you have 0-4 and 5-9 for the two sections
    }
    

    after seeing in your code [self.entries objectAtIndex:indexPath.row];
    I assumed self.entries is the one array that you have been talking about.
    You can initialize the UITableViewCell property in

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    

    by using a combination of section and row to get the index of your self.entries, probably something like

    AppRecord *appRecord = [self.entries objectAtIndex:indexPath.row+5*indexPath.section];
    

    I hope i got your question right.

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

Sidebar

Related Questions

I'm trying to fill an array of 20 ints with numbers from 1-20 in
I am trying to load my table view using plist file. But when i
I am trying to lay out a table-like page with two columns. I want
I am trying to fill a dataset by OleDbDataAdapter from MS Access DB table.
I'm trying to create an html table from database records. I want the table
I am trying to implement search for UITableView. First I fill my array of
I am trying to fill a table with JSON data. When I run the
I am trying to fill a form in a php application from a C#
I am trying to fill object[] with List<string> but I cannot figure out how
I am trying to write a simple table view editor for a Core Data

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.