我在函数中工作,该函数位于自定义 tableViewCell .swift-file
在这个单元格(又名行)中我有3个约束:顶部,底部及其高度。我需要将行的contentView连接到行顶部,底部,然后将其高度连接到计算高度(通过创建此行界面计算)。
我知道创建NSLayoutConstraint的格式,但我不知道如何将第二个视图设置为'它的行高
试过这样的尝试:
topConstraint = NSLayoutConstraint(item: self.contentView, attribute: NSLayoutAttribute.Top, relatedBy: NSLayoutRelation.Equal, toItem: UIView(), attribute: NSLayoutAttribute.Top, multiplier: 1, constant: 31)
但在self.contentView.addConstraint()