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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T02:39:13+00:00 2026-06-04T02:39:13+00:00

I am developing a Universal app. In this app there is a UITableView. Problem

  • 0

I am developing a Universal app. In this app there is a UITableView. Problem is that the header row in TableView is repeating after 6 rows in iphone and 9 rows in iPad.

I googled but not find solution to solve this header issue. please help.

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    // Return the number of rows in the section.

    return [tripList count];
}

UiTableview cellForRowAtIndexPath code:

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

    static NSString *CellIdentifier = @"Cell";

    UILabel *lblTripNumber = nil;
    UILabel *lblTripState = nil;
    UIImageView *imgTripState = nil;
    UILabel *lblStateTitleText = nil;
    UILabel *lblTripNUmberTitleValue = nil;

    static NSUInteger const kTripNumberLabelTag = 2;
    static NSUInteger const kTripStateLabelTag = 3;
    static NSUInteger const kTripImageTag = 4;


    BOOL isiPhone = UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone;
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if(indexPath.row == 0)
    {
        if (cell == nil) {
            cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

            if (!isiPhone) // 1=Ipad        
            {
                lblStateTitleText = [[[UILabel alloc] initWithFrame:CGRectMake(205, 27, 250, (cell.contentView.frame.size.height))] autorelease];
                lblStateTitleText.font = [UIFont boldSystemFontOfSize:32];
            }
            else
            {
                lblStateTitleText = [[[UILabel alloc] initWithFrame:CGRectMake(65, 10, 130, (cell.contentView.frame.size.height))] autorelease];
                lblStateTitleText.font = [UIFont boldSystemFontOfSize:16];
            }
            lblStateTitleText.textAlignment = UITextAlignmentLeft;
            lblStateTitleText.backgroundColor = [UIColor clearColor];
            lblStateTitleText.tag = 11;     
            lblStateTitleText.text = @"Trip State"; 
            lblStateTitleText.textColor = [UIColor cyanColor];
            [cell.contentView addSubview:lblStateTitleText];

            if (!isiPhone) // 1=Ipad        
            {
                lblTripNUmberTitleValue = [[[UILabel alloc] initWithFrame:CGRectMake(445, 27, 290, (cell.contentView.frame.size.height))] autorelease];
                lblTripNUmberTitleValue.font = [UIFont boldSystemFontOfSize:32];
            }
            else
            {
                lblTripNUmberTitleValue = [[[UILabel alloc] initWithFrame:CGRectMake(180, 10, 250, (cell.contentView.frame.size.height))] autorelease];
                lblTripNUmberTitleValue.font = [UIFont boldSystemFontOfSize:16];
            }
            lblTripNUmberTitleValue.textAlignment = UITextAlignmentLeft;
            lblTripNUmberTitleValue.backgroundColor = [UIColor clearColor];
            lblTripNUmberTitleValue.tag = 12;       
            lblTripNUmberTitleValue.text = @"Confirmation#";    
            lblTripNUmberTitleValue.textColor = [UIColor greenColor];
            [cell.contentView addSubview:lblTripNUmberTitleValue];  

        }

    }
    else 
    {   
        if (cell == nil) {
            cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

            CGFloat xIndex = 6.0;       
            CGFloat xIpadIndex = 6.0;

            CGFloat TripNumberLabelWidth = 130.0;

            if (!isiPhone) // 1=Ipad        
            {
                imgTripState = [[[UIImageView alloc] initWithFrame:CGRectMake(xIndex, 18, 50, 64)] autorelease];
            }
            else
            {
                imgTripState = [[[UIImageView alloc] initWithFrame:CGRectMake(xIndex, 8, 32, 32)] autorelease];
            }

            imgTripState.tag = kTripImageTag;
            [cell.contentView addSubview:imgTripState];

            xIndex +=73;
            xIpadIndex +=85;

            if (!isiPhone) // 1=Ipad        
            {
                lblTripState = [[[UILabel alloc] initWithFrame:CGRectMake(xIpadIndex, 25, TripNumberLabelWidth, (cell.contentView.frame.size.height))] autorelease];
                lblTripState.font = [UIFont boldSystemFontOfSize:38];
            }
            else
            {
                lblTripState = [[[UILabel alloc] initWithFrame:CGRectMake(xIndex, 1, TripNumberLabelWidth, (cell.contentView.frame.size.height))] autorelease];
                lblTripState.font = [UIFont boldSystemFontOfSize:20];
            }
            lblTripState.textAlignment = UITextAlignmentLeft;
            lblTripState.backgroundColor = [UIColor clearColor];
            lblTripState.tag = kTripStateLabelTag;      
            lblTripState.textColor = [UIColor colorWithRed:(0.0/255) green:(241.0/255) blue:(216.0/255) alpha:1.0f];
            [cell.contentView addSubview:lblTripState];

            xIndex +=132;
            xIpadIndex +=120;

            if (!isiPhone) // 1=Ipad
            {
                lblTripNumber = [[[UILabel alloc] initWithFrame:CGRectMake(xIpadIndex, 25, TripNumberLabelWidth, (cell.contentView.frame.size.height))] autorelease];
                lblTripNumber.font = [UIFont boldSystemFontOfSize:35];
            }
            else
            {
                lblTripNumber = [[[UILabel alloc] initWithFrame:CGRectMake(xIndex, 0, TripNumberLabelWidth, (cell.contentView.frame.size.height))] autorelease];
                lblTripNumber.font = [UIFont boldSystemFontOfSize:18];
            }

            lblTripNumber.textAlignment = UITextAlignmentLeft;
            lblTripNumber.backgroundColor = [UIColor clearColor];
            lblTripNumber.tag = kTripNumberLabelTag;        
            lblTripNumber.textColor = [UIColor greenColor];
            [cell.contentView addSubview:lblTripNumber];

        }else
        {
            // A reusable cell was available, so we just need to get a reference to the subviews using their tags.
            lblTripNumber = (UILabel *)[cell.contentView viewWithTag:kTripNumberLabelTag];
            lblTripState = (UILabel *)[cell.contentView viewWithTag:kTripStateLabelTag];
        //  imgTripState = (UILabel *)[cell.contentView viewWithTag:kTripImageTag];
        }

        lblTripNumber.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;
        lblTripState.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleRightMargin;


        int indCount = indexPath.row -1;
        TripDetails *trip = [tripList objectAtIndex:indCount];
        lblTripNumber.text = trip.tripNumber;
        lblTripState.text = trip.tripState;


    // Configure the cell...

    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-06-04T02:39:15+00:00Added an answer on June 4, 2026 at 2:39 am

    I got that , I removed

    if (cell == nil) 
    

    and it worked fine. Actually it was looking for its tags in first header row and could not replace its values, so was creating problem.

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

Sidebar

Related Questions

I am developing a universal ios app and the iphone version is nearly done
I am developing an iPhone app that polls an internet web service. The poll
Developing a web application that I've registered with Twitter. In this app, I might
I am developing a Universal app, and there is a UIButton in it which
I am developing a Universal app where I have imageTracker_iPhone.xib imageTracker_iPad.xib imageTracker.h imageTracker.m I
developing iphone app, I have used a UIImageview and i have set an image
I'm developing an iPad app that will be distributed in-house using the Enterprise Program
This is odd, and is only happening with one application that Im developing. Im
My friends and I are developing an app for iphone and android. We need
I want your help my friends. Am developing iphone/ipad universal application. I want to

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.