TableViewCell中的TableView具有自动高度

时间:2016-12-15 08:52:52

标签: ios swift uitableview

enter image description here

我有一个像这样的细胞

内部tableView不是滚动启用,但具有动态单元格和动态contentSize

tableView的高度取决于单元格

当我使用UITableViewAutomaticDimension自动调整单元格大小时,

contentTableView.rowHeight = UITableViewAutomaticDimension

它不适用于内部tableView

它只显示单元格的标签,但不显示tableView

任何答案?感谢

1 个答案:

答案 0 :(得分:0)

首先在viewDidLoad

中写下此内容
self.tableView.rowHeight = UITableViewAutomaticDimension;
self.tableView.estimatedRowHeight = 44.0;

numberOfLine

中将StoryBord属性设置为0

autolayout

将UILable Leading设置为Trailing Top Bottom SuperView

希望它能奏效......

详细说明请参阅此Answer