我正在尝试设置上边距约束,但它不起作用。我有自定义单元格,其中我有两个标签。我想在标签之间的运行时给出顶部间距动态,所以我设置了上边距的约束&安培;我也做了它的出口&使用以下代码更新上边距。
self.view.translatesAutoresizingMaskIntoConstraints = NO;
self.customCell.nslc_first_comment_margin.constant=-21;
[self.customCell.first_comment layoutIfNeeded];
请告诉我如何解决这个问题?
修改 如果在 cellForRowAtIndexPath 中编写代码,此代码有效,但这在 heightForRowAtIndexPath 下不起作用?有人可以告诉这个行为的确切原因。