Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I developed an application which contain tableview.The table cell has three subviews added.My problem is that the table is displaying the data well in iPhone 4s but it is not showing the data in iPhone 5 but works fine in iPhone 5 simulator.The table is showing only one label in the iPhone 5 device.`

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

     UITableViewCell *cell;


    cell=[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"mytablecell"];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;


 if([[[appDelegate.rawItems objectForKey:@"status"]stringValue] isEqualToString:@"0"] || [appDelegate.rawItems  count] == 0)
    {
        UILabel *date=[[UILabel alloc]initWithFrame:CGRectMake(cell.bounds.origin.x+120, cell.bounds.origin.y+5,60, 40)];
        [date setText:@"No Items"];
        [date setFont:[UIFont fontWithName:@"Helvetica" size:13]];
        [date setTextColor:itemColor];
        [cell addSubview:date];
       // [date release];
        UIInterfaceOrientation  toInterfaceOrientation =[[UIDevice currentDevice] orientation];
        if (toInterfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
            toInterfaceOrientation == UIInterfaceOrientationLandscapeRight)
        {
            if ([[UIScreen mainScreen] bounds].size.height == 568)
             date.frame = CGRectMake(cell.bounds.origin.x+250, cell.bounds.origin.y+5,60, 40);
            else
            date.frame = CGRectMake(cell.bounds.origin.x+210, cell.bounds.origin.y+5,60, 40);
        }
    }

    else
    {
        UILongPressGestureRecognizer *recognizer = [[UILongPressGestureRecognizer alloc]
                                                    initWithTarget:self action:@selector(handleLongPress:)];
        recognizer.minimumPressDuration = 1.0; //seconds
        recognizer.delegate = self;
        [cell addGestureRecognizer:recognizer];
       // [recognizer release];
        UILabel *item;
        UILabel *date = [[UILabel alloc]init];

        checkBox *switchs;
        NSLog(@"listcount:%d",[self.checkBoxList count]);
        NSLog(@"indexPath:%d",indexPath.row);

        if(indexPath.row<[self.checkBoxList count])
        {
            switchs=(checkBox *)[self.checkBoxList objectAtIndex:indexPath.row];
        }
        else{
            switchs=nil;
        }


        UIInterfaceOrientation  toInterfaceOrientation =[[UIDevice currentDevice] orientation];
        if (toInterfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
            toInterfaceOrientation == UIInterfaceOrientationLandscapeRight)
        {
            if ([[UIScreen mainScreen] bounds].size.height == 568)
            {
                //set the frames for 4"(IOS6) screen here
                date.frame = CGRectMake(cell.bounds.origin.x+410, cell.bounds.origin.y+5,90, 40);
                switchs.frame = CGRectMake(cell.bounds.origin.x+495, cell.bounds.origin.y+3,40, 40);

            }
            else
            {
                date.frame = CGRectMake(cell.bounds.origin.x+323, cell.bounds.origin.y+5,90, 40);
                switchs.frame = CGRectMake(cell.bounds.origin.x+405, cell.bounds.origin.y+3,40, 40);

            }

        }
        else if (toInterfaceOrientation == UIInterfaceOrientationPortrait ||
                 toInterfaceOrientation == UIDeviceOrientationPortraitUpsideDown )
        {
            date.frame = CGRectMake(cell.bounds.origin.x+163, cell.bounds.origin.y+5,90, 40);
            switchs.frame = CGRectMake(cell.bounds.origin.x+240, cell.bounds.origin.y+3,40, 40);

        }
        else
        {
            date.frame = CGRectMake(cell.bounds.origin.x+163, cell.bounds.origin.y+5,90, 40);
            switchs.frame = CGRectMake(cell.bounds.origin.x+240, cell.bounds.origin.y+3,40, 40);
        }

        item=[[UILabel alloc]initWithFrame:CGRectMake(cell.bounds.origin.x+10, cell.bounds.origin.y+5,150, 40)];
        [item setText:[[[appDelegate.rawItems objectForKey:@"info"]objectAtIndex:indexPath.row]objectForKey:@"name"]];
        [item setFont:[UIFont fontWithName:@"Helvetica" size:13]];
        [item setTextColor:itemColor];
        item.tag = 1;
        [cell.contentView addSubview:item];
        NSUserDefaults *standardUserDefaults=[NSUserDefaults standardUserDefaults];
        NSString *guest  = [standardUserDefaults objectForKey:@"userType"];
        if(![guest isEqualToString:@"guest"])
        {
             NSMutableArray *datesArray = [self formateEXpiryAlarmDates:[[[appDelegate.rawItems objectForKey:@"info"]objectAtIndex:indexPath.row]objectForKey:@"expiry_date"] :[[[appDelegate.rawItems objectForKey:@"info"]objectAtIndex:indexPath.row]objectForKey:@"alarm_date"] ];
        NSLog(@"Array:%@",datesArray);
            [date setText:[datesArray objectAtIndex:0]];
        }
        else{

            [date setText:[[[appDelegate.rawItems objectForKey:@"info"]objectAtIndex:indexPath.row]objectForKey:@"expiry_date"]];
        }

        [date setFont:[UIFont fontWithName:@"Helvetica" size:13]];
        [date setTextColor:itemColor];
        [cell.contentView addSubview:date];

        NSLog(@"indexpath.row:%d",indexPath.row);

        [switchs addTarget:self action:@selector(manageCheckBox:) forControlEvents:UIControlEventTouchUpInside];
        [cell.contentView addSubview:switchs];


    }
    }
    @catch (NSException *exception) {
         NSLog(@"S:caught!!!");
    }

    return cell;


}
`
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.