答案 0 :(得分:0)
首先尝试将imageView内容模式更改为.AspectFit。如果您想要显示整个图像,则第二个图像实际上是正确的。当它开始变得互动时,它看起来像是重绘图像。尝试在加载单元格时调用cell.yourImageView.layoutIfNeeded()来修复问题。如果这是一个UIViewController并且不起作用,请尝试将autodiminsions的代码移动到实际函数。
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
return UITableViewAutomaticDimension
}
func tableView(tableView: UITableView, estimatedHeightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
return closeGuess //maybe 200
}