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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T19:04:55+00:00 2026-05-23T19:04:55+00:00

I am developing a project in which there is one requirement that in a

  • 0

I am developing a project in which there is one requirement that in a table view when I tapped a row there should be one row added below that row and also I want that row to be customized as I want to add a text view in that row.
Please tell me how can I do this.
Any suggestions would be highly appreciated.

My current code:-

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

    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell;

    cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];`


    if (cell == nil) {
            cell = [self reuseTableViewCellWithIdentifier:CellIdentifier withIndexPath:indexPath];
        }
    UIImageView *imgViewBackground=(UIImageView *)[cell.contentView viewWithTag:20];
    UIImageView *imgView=(UIImageView *)[cell.contentView viewWithTag:21];
    UILabel *label1=(UILabel *)[cell.contentView viewWithTag:22];
    UILabel *label2=(UILabel *)[cell.contentView viewWithTag:23];
    UILabel *label3=(UILabel *)[cell.contentView viewWithTag:24];
    [imgViewBackground setImage:[UIImage imageNamed:@"bba3.png"]
    [imgView setImage:[UIImage imageNamed:@"picdefault.png"]];
        [label1 setText:[self.usernameArray objectAtIndex:indexPath.row]];
    [label2 setText:[NSString stringWithFormat:@"%@",[self.level1Array objectAtIndex:indexPath.row]]];
    [label3 setText:[self.ageArray objectAtIndex:indexPath.row]]];
        cell.selectionStyle = UITableViewCellSelectionStyleNone;//to remove blu selection color
    return cell;
}

-(UITableViewCell *)reuseTableViewCellWithIdentifier:(NSString *)identifier withIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell =[[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault  reuseIdentifier:identifier]autorelease];
    if ([identifier isEqualToString:@"Cell"]) {
    UIImageView *imageView=[[UIImageView alloc]initWithFrame:CGRectMake(10, 0, 300, 98)];
    imageView.tag=20;
    [imageView setImage:[UIImage imageNamed:@"bba2.png"]];
    [cell.contentView addSubview:imageView];
    [imageView release];

    UIImageView *imagePicView=[[UIImageView alloc]initWithFrame:CGRectMake(25, 20, 60, 60)];
    imagePicView.tag=21;
    [cell.contentView addSubview:imagePicView];
    [imagePicView release];


    UILabel *namelabel=[[UILabel alloc]initWithFrame:CGRectMake(90, 20, 200, 20)];
    namelabel.backgroundColor=[UIColor clearColor];
    namelabel.font=[UIFont systemFontOfSize:15];
    namelabel.tag=22;
    [namelabel setTextAlignment:UITextAlignmentLeft];
    [namelabel setTextColor:[UIColor blackColor]];
    [cell.contentView addSubview:namelabel];
    [namelabel release];

    UILabel *activitylabel=[[UILabel alloc]initWithFrame:CGRectMake(90, 40, 200, 20)];
    activitylabel.backgroundColor=[UIColor clearColor];
    activitylabel.font=[UIFont italicSystemFontOfSize:14];
    activitylabel.tag=23;
    [activitylabel setTextAlignment:UITextAlignmentLeft];
    [activitylabel setTextColor:[UIColor darkGrayColor]];
    [cell.contentView addSubview:activitylabel];
    [activitylabel release];

    UILabel *agelabel=[[UILabel alloc]initWithFrame:CGRectMake(90, 60, 200, 20)];
    agelabel.backgroundColor=[UIColor clearColor];
    agelabel.font=[UIFont systemFontOfSize:13];
    agelabel.tag=24;
    [agelabel setTextAlignment:UITextAlignmentLeft];
    [agelabel setTextColor:[UIColor darkGrayColor]];
    [cell.contentView addSubview:agelabel];
    [agelabel release];

    }


    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-23T19:04:56+00:00Added an answer on May 23, 2026 at 7:04 pm

    Look at the WWDC 2011 developer video for UITableView changes and tips – in there they describe how to do exactly that. Sadly there’s not been any sample code I’ve ever been able to find, but they document the approach pretty well in the talk.

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

Sidebar

Related Questions

I'm currently developing on a project which uses some TimerJobs. One of the jobs
I'm starting a new project which involves developing an interface for a machine that
We are developing customized installer using visual studio 2008 installer project. The requirement which
I am developing a new project from scratch with Django. I see that there
I am going to be developing a large project which will include a large
Our team is developing a rather big ASP.NET web project which initially started in
I'm developing a small POS for a university project. I have a form which
i am working on a project, which i am developing with Python and PyQT4.
I've getting quite fast with a small django project of mine, which I'm developing
I am developing a project in which I am persisting some POJOs by adding

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.