I'm trying to resize my custom cell in a tebleview. But with no success. The NSlog at the end returns:
2013-12-19 18:51:40.785 DevCloud[15750:70b] 20.281000
2013-12-19 18:51:40.786 DevCloud[15750:70b] 41.565002
2013-12-19 18:51:40.787 DevCloud[15750:70b] 20.281000
2013-12-19 18:51:40.787 DevCloud[15750:70b] 41.565002
Here are my 2 method implementations for cell and cell height: How to make it work? :)
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"TimelineCell";
TLRKTimelineCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
// Configure the cell...
cell.sampleLabel.text = @"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer fermentum, neque sed viverra vestibulum, arcu ligula imperdiet turpis, blandit consectetur quam neque eu urna. Duis rhoncus accumsan eleifend. Vestibulum ac nunc aliquet, semper felis at, suscipit tortor. Etiam nec mauris nunc.";
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
TLRKTimelineCell *cell = [tableView dequeueReusableCellWithIdentifier:@"TimelineCell"];
CGSize boundingSize = CGSizeMake(cell.sampleLabel.frame.size.width, FLT_MAX);
UIFont *font = [UIFont fontWithName:@"Helvetica Neue" size:17];
CGRect textRect = [cell.sampleLabel.text boundingRectWithSize:boundingSize options:NSStringDrawingUsesFontLeading attributes: @{NSFontAttributeName:font} context:nil];
NSLog(@"%f",textRect.size.height);
NSLog(@"%f",textRect.size.width);
return textRect.size.height;
}
I think the problem is that the method
heightForRowAtIndexPath
is called beforecellForRowAtIndexPath
.in
heightForRowAtIndexPath
you should pass your for exampleNSArray
forindexPath.row
in this case i wrote yourcell.textLabel.text
and it should work:and I recommend to change:
NSStringDrawingUsesFontLeading
with:NSStringDrawingUsesLineFragmentOrigin