我有一个像这样的细胞
内部tableView
不是滚动启用,但具有动态单元格和动态contentSize
tableView的高度取决于单元格
当我使用UITableViewAutomaticDimension
自动调整单元格大小时,
contentTableView.rowHeight = UITableViewAutomaticDimension
它不适用于内部tableView
它只显示单元格的标签,但不显示tableView
任何答案?感谢
答案 0 :(得分:0)
首先在viewDidLoad
self.tableView.rowHeight = UITableViewAutomaticDimension;
self.tableView.estimatedRowHeight = 44.0;
在numberOfLine
StoryBord
属性设置为0
从autolayout
Leading
设置为Trailing
Top
Bottom
SuperView
希望它能奏效......
详细说明请参阅此Answer