您好,任何人都可以帮助我了解以下两种方法之间的区别。
首先:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 100;
}
第二名:
- (CGFloat)tableView:(UITableView *)tableView estimatedHeightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 100;
}
提前致谢。
答案 0 :(得分:2)
heightForRowAtIndexPath
是真正的高度。 Cell的高度为100。
estimatedHeightForRowAtIndexPath
不是真正的高度。 Cell估计高度为100.然后根据约束