12

我正在尝试实现一个受约束的UITableViewCell子类,并且一切都运行良好,除了UILabel. 我设置的约束肯定会被强制执行,但是当约束发生冲突时,标签内的文本不会调整为较小的字体大小。相反,UILabel 的高度被截断并且字体保持相同大小,这意味着字母在顶部和底部被截断。

有没有我必须调用的方法才能让它工作?我认为自动布局足够聪明,可以自动调整字体大小,所以我有点不知道为什么会这样。

相关代码:

self.label = [[UILabel alloc] initWithFrame:CGRectZero];
self.label.textColor = [UIColor whiteColor];
self.label.translatesAutoresizingMaskIntoConstraints = NO;
self.label.textAlignment = NSTextAlignmentCenter;
self.label.numberOfLines = 1;
[self.contentView addSubview:self.label];

NSLayoutConstraint *otherViewToLabelHorizontalConstraint =  // Make sure that the label is always to the right of the other view.
                    [NSLayoutConstraint constraintWithItem:self.label 
                                                 attribute:NSLayoutAttributeLeft 
                                                 relatedBy:NSLayoutRelationGreaterThanOrEqual
                                                    toItem:self.otherView 
                                                 attribute:NSLayoutAttributeRight 
                                                multiplier:1.0
                                                  constant:0.0];

NSLayoutConstraint *aTextFieldToLabelVerticalConstraint = 
                    [NSLayoutConstraint constraintWithItem:self.label 
                                                 attribute:NSLayoutAttributeTop 
                                                 relatedBy:NSLayoutRelationGreaterThanOrEqual
                                                    toItem:self.aTextField 
                                                 attribute:NSLayoutAttributeBottom 
                                                multiplier:1.0
                                                  constant:0.0];

基本上,这些约束旨在强制一个单元格otherView位于左侧,位于同一 y 级别aTextField的右侧,并且标签位于底部的下方和右侧。otherViewaTextFieldotherView

像往常一样,感谢您对此的任何帮助。

4

3 回答 3

7

你需要

myLabel.adjustsFontSizeToFitWidth = YES;
myLabel.minimumScaleFactor = .5f;

然后标签字体大小将自动调整。

于 2013-06-18T00:44:42.457 回答
3

我通过为将标签链接到的视图设置所需的宽度约束来解决了这个问题。

   NSLayoutConstraint *constraint = [NSLayoutConstraint constraintWithItem:self attribute:NSLayoutAttributeWidth relatedBy:NSLayoutRelationEqual toItem:nil attribute:NSLayoutAttributeNotAnAttribute multiplier:0.0f constant:width];

并确保此约束的优先级设置为 UILayoutPriorityRequired。

[constraint setPriority:UILayoutPriorityRequired];

将标签固定到超级视图而不是文本字段时,文本正在调整大小,因此我推断标签最终宽度的布局计算中涉及的元素的固有大小一定存在问题。

于 2014-04-09T11:31:46.267 回答
2

除了 和 的设置adjustsFontSizeToFitWidthminimumScaleFactor还需要将标签的内容压缩设置为低优先级。查看这篇objc.io 文章的“抗压缩性和内容拥抱”部分。基本上,如果您的标签的抗压优先级低于尾随约束,则标签应调整大小:

[myLabel setContentCompressionResistancePriority:UILayoutPriorityDefaultLow
                                 forAxis:UILayoutConstraintAxisHorizontal];
于 2014-03-26T10:23:05.507 回答