动态扩展Tableview索引路径行的高度取决于UILabel高度。
我已经多次尝试但仍然没有工作。
答案 0 :(得分:0)
设置UILabel的约束
然后将此行写入viewDidLoad
self.tableView.estimatedRowHeight = 170;
self.tableView.rowHeight = UITableViewAutomaticDimension;
并使用此委托
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
return UITableViewAutomaticDimension
}