我有一个使用自动布局在情节提要中定义UITableView
的自定义。UITableViewCell
该单元格有几个 multiline UILabels
。
UITableView
似乎可以正确计算单元格高度,但对于前几个单元格,高度没有在标签之间正确划分。滚动了一下之后,一切都按预期工作(即使是最初不正确的单元格)。
- (void)viewDidLoad {
[super viewDidLoad]
// ...
self.tableView.rowHeight = UITableViewAutomaticDimension;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
TableViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:@"TestCell"];
// ...
// Set label.text for variable length string.
return cell;
}
有什么我可能遗漏的东西,导致自动布局在前几次无法完成它的工作吗?
我创建了一个示例项目来演示这种行为。