我有一个UILabel
我有时想在一个单元格中垂直居中。这必须以编程方式完成。我尝试添加以下约束以使其居中(locName 是 UILabel):
[cell addConstraint:[NSLayoutConstraint constraintWithItem:cell
attribute:NSLayoutAttributeCenterY relatedBy:0 toItem:cell.locName
attribute:NSLayoutAttributeCenterY multiplier:1 constant:0]];
这是我得到的结果:
它看起来像它的居中,但也许改变了或什么的高度UILabel
?
这是 IB 中的视图控制器:
如何以编程方式实现垂直居中?