所以我正在尝试对单元格内容 View 使用自动布局来获得正确的布局。所以我的问题是我有一个 UILabel 可以改变其相对于其文本的大小,并且我还有一个 UIView 作为带有圆角的标签的背景 View 。所以我的问题是,如何强制这个 UIView 的 宽度比 UILabel 宽 10 点。我设法让它的宽度相同,但我怎样才能让它总是变宽一定的长度?
提前谢谢你!
Best Answer-推荐答案 strong>
NSLayoutConstraint *widthConstraint = [NSLayoutConstraint constraintWithItem:yourLabel
attribute:NSLayoutAttributeWidth
relatedBy:NSLayoutRelationEqual
toItem:yourLabel.superview
attribute:NSLayoutAttributeWidth
multiplier:1.0
constant:10]; // <-- this
[yourLabel.superview addConstraint:widthConstraint];
关于ios - UILabel Autolayout 宽度问题,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/19767951/
|