I've had a problem like this before but it was to do with the reuse of the cell. Now I know the cuprit line which i'll point out in the code below, but it's been added to make sure the cell text fits properly in the table (changing text sizes from XML feed)
The code:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
ViewRoutesCell * aCell = (ViewRoutesCell *)[tableView dequeueReusableCellWithIdentifier:@"ViewRoutesCell"];
if (aCell == nil)
{
NSArray *arr = [[NSBundle mainBundle] loadNibNamed:@"ViewRoutesCell" owner:self options:nil];
aCell = (ViewRoutesCell *)[arr objectAtIndex:0];
}
AssessObject *newObj1;
newObj1=[totalArray objectAtIndex:indexPath.row];
UIImage *image = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:newObj1.routeImage]]];
aCell.imgRoute.image = image;
aCell.lblRouteText.text = newObj1.routeText;
aCell.lblRouteImage.text = newObj1.routeImage;
aCell.txtRoute.text = newObj1.routeText;
aCell.txtRoute.frame = CGRectMake(aCell.txtRoute.frame.origin.x, aCell.txtRoute.frame.origin.y, aCell.txtRoute.frame.size.width, aCell.txtRoute.contentSize.height);
return aCell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
AssessObject *newObj1;
newObj1=[totalArray objectAtIndex:indexPath.row];
NSString *cellText = newObj1.routeText;
UIFont *cellFont = [UIFont fontWithName:@"Helvetica" size:16.0];
CGSize constraintSize = CGSizeMake(320.0, CGFLOAT_MAX);
CGSize labelSize = [cellText sizeWithFont:cellFont constrainedToSize:constraintSize lineBreakMode:UILineBreakModeWordWrap];
return labelSize.height + 250;
}
Now if i include the line:
aCell.txtRoute.frame = CGRectMake(aCell.txtRoute.frame.origin.x, aCell.txtRoute.frame.origin.y, aCell.txtRoute.frame.size.width, aCell.txtRoute.contentSize.height);
This happens (click for video)
However, when I comment that line out this happens:
So it shows all the text at the start, but it's cutting the longer text sections out before all the text has been displayed (but making the cell the right height)
I'm very confused!
Tom