国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

iOSUILabel自定義行間距時獲取高度

2019-11-14 19:09:59
字體:
來源:轉載
供稿:網友

本文介紹一下自定義行間距的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;

 


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 江口县| 东源县| 海丰县| 商丘市| 外汇| 邵武市| 密云县| 海林市| 屯昌县| 庆城县| 张掖市| 宜章县| 富阳市| 崇信县| 安化县| 辽宁省| 湘阴县| 永泰县| 理塘县| 滦南县| 讷河市| 屯昌县| 云梦县| 巴林右旗| 封开县| 凤城市| 调兵山市| 温宿县| 桃园市| 泾阳县| 江门市| 临安市| 民勤县| 陆川县| 西安市| 龙门县| 民权县| 三门县| 固阳县| 平阳县| 舟曲县|