2

在 iOS 9 上,使用 UITableViewAutomaticDimension 和 viewDidLoad 上的 200.festimatedRowHeight 设置我的 tableView。

[self.tableView setEstimatedRowHeight:200.f];
[self.tableView setRowHeight:UITableViewAutomaticDimension];

它适用于带有图像、按钮或标签的单元格,但对于带有 textView 和按钮的单元格,按钮显示正确,但当我的 tableView 更新时 textView 不会展开。

[self.tableView beginUpdates];
NSIndexSet *indexSet = [NSIndexSet indexSetWithIndex:1];
[self.tableView reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];
[self.tableView endUpdates];

你对想要有什么想法可能是我的错误吗?

我应该在我的单元格中以编程方式更新高度约束吗?

谢谢

4

1 回答 1

2

I found the solution, my UITextView was set as scrollable, I unchecked it in IB and now it works.

于 2015-12-21T09:41:53.720 回答