使用Autolayout扩展tableView单元格导致UIViewAlertForUnsatisfiableConstraints

我正在尝试使用UITableViewAutomaticDimension行高和单元格的Autolayout的组合来制作可展开的单元格。 为了简单起见,我开始使用以下简单的代码,我希望能够工作:

 import UIKit class ViewController: UITableViewController { let cells = [Cell(), Cell(), Cell()] override func viewDidLoad() { super.viewDidLoad() tableView.rowHeight = UITableViewAutomaticDimension tableView.estimatedRowHeight = 50 for cell in cells { cell.tableView = tableView } } override func numberOfSections(in tableView: UITableView) -> Int { return 1 } override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return 3 } override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { return cells[indexPath.row] } } class Cell: UITableViewCell { var cons: NSLayoutConstraint? var tableView: UITableView? init() { super.init(style: .default, reuseIdentifier: nil) let button = UIButton() contentView.addSubview(button) button.addTarget(self, action: #selector(Cell.tapped(_:)), for: .touchUpInside) button.setTitle("Press me", for: .normal) button.setTitleColor(.red, for: .normal) button.translatesAutoresizingMaskIntoConstraints = false // constraining the button to the view, so that buttons height would define cell height let constraints = [ button.topAnchor.constraint(equalTo: contentView.topAnchor), button.rightAnchor.constraint(equalTo: contentView.rightAnchor), button.bottomAnchor.constraint(equalTo: contentView.bottomAnchor), button.leftAnchor.constraint(equalTo: contentView.leftAnchor), ] NSLayoutConstraint.activate(constraints) cons = button.heightAnchor.constraint(equalToConstant: 100) cons?.isActive = true } func tapped(_ sender: UIButton) { // change the height of the button, thus of the contentView too (since the button is constrained to the contentView) if cons?.constant == 100 { cons?.constant = 200 } else { cons?.constant = 100 } // tell the tableView to redraw itself to apply the change tableView?.beginUpdates() tableView?.setNeedsDisplay() tableView?.endUpdates() } required init?(coder aDecoder: NSCoder) { fatalError("init(coder:) has not been implemented") } } 

现在这似乎工作,但是,我仍然得到UIViewAlertForUnsatisfiableConstraints警告与以下消息:

 ( "<NSLayoutConstraint:0x17408c7b0 V:|-(0)-[UIButton:0x109e10290'Press me'] (active, names: '|':UITableViewCellContentView:0x109e0fd90 )>", "<NSLayoutConstraint:0x17408c8a0 UIButton:0x109e10290'Press me'.bottom == UITableViewCellContentView:0x109e0fd90.bottom (active)>", "<NSLayoutConstraint:0x17408c990 UIButton:0x109e10290'Press me'.height == 200 (active)>", "<NSLayoutConstraint:0x17408db10 'UIView-Encapsulated-Layout-Height' UITableViewCellContentView:0x109e0fd90.height == 100 (active)>" ) Will attempt to recover by breaking constraint <NSLayoutConstraint:0x17408c990 UIButton:0x109e10290'Press me'.height == 200 (active)> 

似乎估计(或当前)的行高与我提供的自动布局约束相冲突。 不过,使用下面的代码刷新tableView将按预期方式显示它:

 tableView?.beginUpdates() tableView?.setNeedsDisplay() tableView?.endUpdates() 

我如何删除警告?

我知道简单地将高度约束的优先级改为999会消除这个警告,但在我看来这是一个破解,而不是解决scheme。 如果我错了,请解释一下。 谢谢。

将高度限制优先级设置为999可能会觉得像黑客,但根据苹果的文档:

注意不要强制使用全部1000个优先级值。 事实上,优先级应该围绕系统定义的低(250),中(500),高(750)和必需(1000)优先级进行。 您可能需要制定高于或低于这些值一个或两个点的约束,以帮助防止关系。 如果超出这个范围,你可能想要重新检查布局的逻辑。

可能有点不直观:

“我想button的高度来控制细胞的高度,所以降低它的优先权?

但是,这似乎是做到这一点的“正确”方式。

参考: https : //developer.apple.com/library/content/documentation/UserExperience/Conceptual/AutolayoutPG/AnatomyofaConstraint.html#//apple_ref/doc/uid/TP40010853-CH9-SW19

删除高度约束,即200,因为它与顶部和底部约束相冲突。

希望能帮助到你..