4

所以,我的表格视图显示图像。每个单元格基本上是一个填充整个单元格的图像contentView。由于图像具有不同的纵横比,我需要我的单元格根据表格视图的宽度和图像的纵横比调整它们的高度。我遵循了这个 Ray Wenderlich教程,但现在遇到了约束冲突。通过改变imageViews 高度约束来调整图像大小,例如myImageViewHeight.constant = tableView.frame.width / aspectRatio

2016-06-16 13:56:25.823 MyApp[92709:5649464] Unable to simultaneously satisfy constraints.
Probably at least one of the constraints in the following list is one you don't want. 
Try this: 
    (1) look at each constraint and try to figure out which you don't expect; 
    (2) find the code that added the unwanted constraint or constraints and fix it. 
(
"<NSLayoutConstraint:0x7fbcdaf5c190 V:[UIImageView:0x7fbcdaf5c300(303)]>",
"<NSLayoutConstraint:0x7fbcdaf5b460 V:|-(0)-[UIImageView:0x7fbcdaf5c300]   (Names: '|':UITableViewCellContentView:0x7fbcdaf52230 )>",
"<NSLayoutConstraint:0x7fbcdaf5b4b0 V:[UIImageView:0x7fbcdaf5c300]-(0)-|   (Names: '|':UITableViewCellContentView:0x7fbcdaf52230 )>",
"<NSLayoutConstraint:0x7fbcdaf5e550 'UIView-Encapsulated-Layout-Height' V:[UITableViewCellContentView:0x7fbcdaf52230(100)]>"
)

Will attempt to recover by breaking constraint 
<NSLayoutConstraint:0x7fbcdaf5c190 V:[UIImageView:0x7fbcdaf5c300(303)]>

图像视图具有以下约束,并将单元格contentView作为超级视图。

约束

在表视图控制器类中,我正在使用

self.tableView.estimatedRowHeight = 80
self.tableView.rowHeight = UITableViewAutomaticDimension

我也试过这个 - 同样的结果。

func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
    return UITableViewAutomaticDimension
}

func tableView(tableView: UITableView, estimatedHeightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
    return UITableViewAutomaticDimension
}

我猜我必须摆脱'UIView-Encapsulated-Layout-Height' V:[UITableViewCellContentView:0x7fbcdaf52230(100)]>"但如何?此外,是否有人知道有关如何正确创建具有动态内容的表格视图的某种文档/教程,这些内容不仅涵盖单元格内的一堆标签?如果图像视图被标签替换, 我的代码就可以正常工作......

4

2 回答 2

12

您的实现是正确的,不要更改代码中的任何内容或任何约束。删除警告很容易,只需选择高度约束并将其优先级从 1000 降低到 999,它将修复您的警告。如果仍然出现,请告诉我.

于 2016-06-16T13:19:56.930 回答
0

这是一个老问题,但我只是为了记录而提出这个问题。这里的问题是估计的高度 80,低于计算的高度 100。将估计的高度更改为 >=100 应该可以解决此警告。

于 2019-10-28T09:40:52.550 回答