主要思路是通过调用UILabel的- (CGSize)sizeThatFits:(CGSize)size方法来得到label的自适应高度值。
注意这里不能调用NSString的- (CGSize)sizeWithFont:(UIFont *)font constrainedToSize:(CGSize)size lineBreakMode:(NSLineBreakMode)lineBreakMode方法来获得高度,因为如果未来label的可以配置其他行间距,自定义字体等等,那么此方法便会失效。 其实,iOS的UILabel已经可以支持不同的字体属性,比如大小,颜色。所以此方法已经不再是正确的了
1.针对非AutoLayout的情况,直接调整frame:
- (void)autoHeightOfLabel:(UILabel *)label{
//Calculate the expected size based on the font and linebreak mode of your label
// FLT_MAX here simply means no constraint in height
CGSize maximumLabelSize = CGSizeMake(label.frame.size.width, FLT_MAX);
CGSize expectedLabelSize = [label sizeThatFits:maximumLabelSize];
//adjust the label the the new height.
CGRect newFrame = label.frame;
newFrame.size.height = expectedLabelSize.height;
label.frame = newFrame;
[label updateConstraintsIfNeeded];
}
2.针对AutoLayout的情况,需要更新约束:
- (void)autoHeightOfLabel:(UILabel *)label{
//Calculate the expected size based on the font and linebreak mode of your label
// FLT_MAX here simply means no constraint in height
CGSize maximumLabelSize = CGSizeMake(label.frame.size.width, FLT_MAX);
//add the new height constraint to the label
for (NSLayoutConstraint *constraint in label.constraints) {
if (constraint.firstItem == label && constraint.firstAttribute == NSLayoutAttributeHeight && constraint.secondItem == nil) {
constraint.constant = expectedLabelSize.height;
break;
}
}
}
本文介绍如何使用UILabel的sizeThatFits方法实现UILabel的高度自适应,包括非AutoLayout和AutoLayout两种情况下的实现方式。
643

被折叠的 条评论
为什么被折叠?



