我在UITableViewCell
自定义类里面调整了一个自定义的高度,我相信我需要使用-tableView:cellForRowAtIndexPath:
方法来调整单元格的高度。我试图在自定义单元格类中调整自定义单元格的高度,然后在给定的索引路径中抓取单元格,然后返回该单元格的高度,如下所示:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
{
CustomUITableViewCell *cell = (CustomUITableViewCell *)[tableView cellForRowAtIndexPath:indexPath];
return cell.frame.size.height;
}
但我得到堆栈溢出。有什么更好的方法来解决这个问题?