我有一个用于自动布局的 tableview UITableViewAutomaticDimension ,并且在 tableview 单元格配置和重新加载后,我获得了 tableview 内容大小以使 tableview 高度作为它的内容高度,这个高度似乎不正确按 estimatedRowHeight 计算。我知道我可以使用 kvo 获得最后一个正确的高度来观察 tableview 内容大小,但我不知道哪个是最后一个正确的高度,因为我只想在内容大小正确时做一次。我该怎么做?
Best Answer-推荐答案 strong>
您需要添加一个委托(delegate)方法,例如
-(CGFloat)tableViewUITableView *)tableView estimatedHeightForRowAtIndexPathNSIndexPath *)indexPath
{return UITableViewAutomaticDimension;
}
-(CGFloat)tableViewUITableView *)tableView heightForRowAtIndexPathnonnull NSIndexPath *)indexPath
{
return UITableViewAutomaticDimension;
}
在此之前,您应该在原型(prototype)单元格中放置的内容上固定 4 个面。
现在您得到了每个单元格的确切行高。
关于ios - 如何使用自动布局获得 iOS 表格 View 最后正确的内容大小,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/33092808/
|