我在表视图中有asyncimage视图自定义单元格和高度约束 图像视图。
完成图像下载后,我必须增加 细胞的高度。所以我正在改变高度约束的常数。
// cell.swift
self.heightConstraint.constant = image.size.height
self.delegate?reloadTableView()
// viewcontroller.swift
func reloadTableView()
{
self.tableView.beginUpdates()
self.tableView.endUpdates()
}
当我尝试更改约束的常量时,我得到了一些约束异常。
一个解决方案就在这里:
更改优先级
How to change textview height constraint within table view cell?
有没有其他方法可以解决这个问题?什么是正确的方法?