lable计算行高

Posted 红街咖啡

tags:

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

 _introduce.text=status.introduce;
    
    //设置行间距
    NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc]initWithString:_introduce.text];;
    NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc]init];
    [paragraphStyle setLineSpacing:7];
    [attributedString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, _introduce.text.length)];
    
    _introduce.attributedText = attributedString;
    
    
    NSString *introduce=status.introduce;
    
    CGSize titleSize = [introduce boundingRectWithSize:CGSizeMake(KScreenWidth-80, MAXFLOAT) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:12],NSParagraphStyleAttributeName:paragraphStyle} context:nil].size;
    
    CGFloat height=titleSize.height;
    
View Code

 

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

UITableView!别再用代码计算行高了

iOS 动态计算行高,宽等

[iOS 开发基础]- 动态计算cell行高

iOS Coding项目片段记录

wpf datagrid row height 行高自动计算使每行行高自适应文本

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