动画自定义表格视图单元格约束更改的正确方法是什么

时间:2017-01-06 05:03:55

标签: ios uitableview autolayout swift3 uiviewanimation

我在表视图中有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?

有没有其他方法可以解决这个问题?什么是正确的方法?

0 个答案:

没有答案