UITableViewCell没有调整到UIImageView

时间:2016-08-28 22:39:09

标签: ios swift uitableview tableviewcell

我想知道是否有人知道解决这个问题的热点。当我运行应用程序时,图像被切断而不是显示。我附上了照片以便详细展示。

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:1)

由于表视图中有两种单元格,因此必须在heightForRowAtIndexPath内以编程方式设置两个单元格的高度。

目前,您只有一个单元格大小,我认为默认为44.0

答案 1 :(得分:0)

您可能没有正确设置imageview的约束。

正确设置tableviewcell框架的imageview的top,bottom,left,rignt约束。给出imageview的宽高比大小。 并从heightForRowAtIndexPathestimatedHeightForRowAtIndexPath委托函数返回 UITableViewAutomaticDimension 。 这将有效!!