码迷,mamicode.com
首页 > 移动开发 > 详细

(转载)iOS UILabel自定义行间距时获取高度

时间:2016-01-05 20:59:54      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

本文介绍一下自定义行间距的UILabel的高度如何获取,需要借助一下开源的UILabel控件:TTTAttributedLabel

附下载地址 https://github.com/TTTAttributedLabel/TTTAttributedLabel 

下载后,添加到工程里面,导入头文件

 #import "TTTAttributedLabel.h"

直接上代码

技术分享
NSString *str = @"UILabel自定义行间距时获取高度,UILabel自定义行间距时获取高度,UILabel自定义行间距时获取高度,UILabel自定义行间距时获取高度,UILabel自定义行间距时获取高度,UILabel自定义行间距时获取高度,UILabel自定义行间距时获取高度.";
    
    //创建tttLabel
    TTTAttributedLabel *tttLabel = [[TTTAttributedLabel alloc] initWithFrame:CGRectMake(30, 55, 300, 100)];
    tttLabel.lineBreakMode = NSLineBreakByCharWrapping;
    tttLabel.lineSpacing = 6;//设置行间距
    tttLabel.font = [UIFont systemFontOfSize:12];
    tttLabel.numberOfLines = 0; //设置行数为0
    [tttLabel setText:str];
    tttLabel.textAlignment = NSTextAlignmentLeft;
    tttLabel.backgroundColor = [UIColor redColor];
    [self.view addSubview:tttLabel];
    
    //获取tttLabel的高度
    //先通过NSMutableAttributedString设置和上面tttLabel一样的属性,例如行间距,字体
    NSMutableAttributedString *attrString = [[NSMutableAttributedString alloc] initWithString:str];
    //自定义str和TTTAttributedLabel一样的行间距
    NSMutableParagraphStyle *paragrapStyle = [[NSMutableParagraphStyle alloc] init];
    [paragrapStyle setLineSpacing:6];
    //设置行间距
    [attrString addAttribute:NSParagraphStyleAttributeName value:paragrapStyle range:NSMakeRange(0, str.length)];
    //设置字体
    [attrString addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:12] range:NSMakeRange(0, str.length)];
    
    //得到自定义行间距的UILabel的高度
    CGFloat height = [TTTAttributedLabel sizeThatFitsAttributedString:attrString withConstraints:CGSizeMake(300, MAXFLOAT) limitedToNumberOfLines:0].height;
    
    //重新改变tttLabel的frame高度
    CGRect rect = tttLabel.frame;
    rect.size.height = height;
    tttLabel.frame = rect;

 

 

(转载)iOS UILabel自定义行间距时获取高度

标签:

原文地址:http://www.cnblogs.com/songxing10000/p/5103580.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!