I use this code to display UITableView with 2 segment
if(segment.selectedSegmentIndex==0)
{
firstSeg=[firsArray objectAtIndex:indexPath.row];
NSString * celldata = [NSString stringWithFormat:@"%@ %@ %@",firstSeg.a,firstSeg.b,firstSeg.c];
lbl =[[UILabel alloc]initWithFrame:CGRectMake(10, 10, 300, 20) ];
lbl.text=celldata;
[cell.contentView addSubview:lbl];
}
else if(segment.selectedSegmentIndex==1) {
seconSeg=[secondArray objectAtIndex:indexPath.row];
NSString * celldata = [NSString stringWithFormat:@"%@ %@ %@",secondSeg.a,secondSeg.b,secondSeg.c];
lbl2 =[[UILabel alloc]initWithFrame:CGRectMake(10, 10, 300, 20) ];
lbl2.text=celldata;
[cell.contentView addSubview:lbl2];
}
return cell;
My tableView and my segment work fine , but when I select a row in the second segment, the first label lbl and lbl2 appear together. I tried, in the second segment, to make lbl=nil, lbl=NULL but it don't work, can you help me please?
with this cell.textLabel.text =celldata; it woek perfectly but the text is too large, i can't modifie the size ?