所以我有一个非常基本的问题。我UITableView
在 a中有这个view
,我想让这个表的高度尽可能高,以显示表中的所有行。因此,我不想滚动,我只想显示所有行。(行的数量和 是动态的height
)。
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
CGSize cellSize = [[[_stepsArray objectAtIndex:indexPath.row]content] sizeWithFont:[UIFont boldSystemFontOfSize:18.0f] constrainedToSize:CGSizeMake(528.0f, CGFLOAT_MAX)lineBreakMode:NSLineBreakByWordWrapping];
return cellSize.height;
}
如果有 20 行,表格会很高,但如果只有 1 行,就会很小,其他内容不会出现在 19 行下面。