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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T10:49:53+00:00 2026-05-13T10:49:53+00:00

I want to create a tableview like this. All sections have custom section header

  • 0

I want to create a tableview like this. All sections have custom section header views.

The first row of first section contains a custom row rest of the first section cell’s are another custom cell. Though every section will contain different type of cells.

So what is the best approach to achieve this while managing the speed of tableview? Currently I’m using custom cells using interface builder. Is there a way that I could add different things on different sections on cells?

  • 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-13T10:49:53+00:00Added an answer on May 13, 2026 at 10:49 am

    Try to keep as few types of cells as you can. If one type cell is similar to another but with one or two extra labels, just set it all up in the same cell and keep the labels empty on the cell that doesn’t need them. That way they can be in the same reuse queue. If the cells are different enough you might need to have more queues. Just instantiate them with a different cellIdentifier and they will get added to the queue for that identifier.

    eg.

    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
        UITableViewCell *cell;
    
        if(indexPath.row == 0) {
             cell = [tableView dequeueReusableCellWithIdentifier:@"firstRowCell"];
    
            if(!cell) {
                cell = [[UITableViewCell alloc] inittWithFrame:CGRectZero reuseIdentifier:@"firstRowCell"];
            }
    
            // -- first cell setup
    
        } else {
             cell = [tableView dequeueReusableCellWithIdentifier:@"genericRowCell"];
    
            if(!cell) {
                cell = [[UITableViewCell alloc] inittWithFrame:CGRectZero reuseIdentifier:@"genericRowCell"];
            }
    
            // -- generic cell setup
        }
    
        // -- common cell setup
    
        return cell;
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to make a tableView like this: http://www.topappreviews101.com/ipappimg/4025/moma-ab-ex-ny-screenshot-3.jpg I created a horizontal table
I have a view. It is structured like this: -View -Scroll view -TableView -TableView
i want create a custom json data from the mssql 2008 results so that
i want create Dynamic Slideshow in Jquery i'm Write this code var ctx =
i want create image animation , i have 50 images with png format now
I feel like a real noob asking this, but here's my problem: I want
I have a tableview with a search bar. All is working fine but now
in my app i have an UITabBarController with UINavigationControllers initialized like this UINavigationController *newsNavigationController
First of all, I'm new to this so excuse my any simplest question. I'm
Consider something like this: new RootElement (Root){ new Section (Section A) { new EntryElement(Element

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.