iOS UILabel 设置行高

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS UILabel 设置行高相关的知识,希望对你有一定的参考价值。

UILabel *tileLabel = [[UILabel alloc] init];

    tileLabel.numberOfLines = 0;

    tileLabel.backgroundColor = [UIColor clearColor];

    tileLabel.text = @"调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头调整行间距云头";

    tileLabel.font = [UIFont systemFontOfSize:11.0f];

    tileLabel.textColor = [Tools colorWithHex:0x787878];


    NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:tileLabel.text];

    NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];

    [paragraphStyle setLineSpacing:18];//调整行间距

    [attributedString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [tileLabel.text length])];

    tileLabel.attributedText = attributedString;


    NSDictionary *attributes = @{NSFontAttributeName:tileLabel.font, NSParagraphStyleAttributeName:paragraphStyle.copy};

    CGFloat height = [tileLabel.text boundingRectWithSize:CGSizeMake(self.view.width-32, CGFLOAT_MAX) options:NSStringDrawingUsesLineFragmentOrigin | NSStringDrawingUsesFontLeading attributes:attributes context:nil].size.height ;

//    CGFloat height =[self changeStationWidth:tileLabel.text anWidthTxtt:self.view.width-32 anfont:11];

    tileLabel.frame = CGRectMake(16, 0, self.view.width-32, height);


    [self.view addSubview:tileLabel];


本文出自 “11204872” 博客,请务必保留此出处http://11214872.blog.51cto.com/11204872/1754484

以上是关于iOS UILabel 设置行高的主要内容,如果未能解决你的问题,请参考以下文章

似乎无法为 UILabel 计算正确的 NSAttributedString 行高

如何在 uilabel 中使用多行并根据 Swift 中的标签高度自动扩展 uitableview 行高?

如何修复 UILabel 文本间距?

iPhone:如何通过 UILabel 内容高度更改行高

iOS的UILabel设置多行显示

iOS的UILabel设置居上对齐,居中对齐,居下对齐