在自定义tableView单元格中创建NSLayoutConstraint

时间:2016-01-17 08:59:30

标签: swift height tableview nslayoutconstraint

我在函数中工作,该函数位于自定义 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()

上获得了EXC_BAD_ADRESS

0 个答案:

没有答案