动态计算Label高度
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了动态计算Label高度相关的知识,希望对你有一定的参考价值。
//1.设置该label的numberOfLines为0
self.titleLabel.numberOfLines = 0;
//2.字体的设置要与之前相同
NSDictionary * attribute = @{NSFontAttributeName:[UIFont systemFontOfSize:17]};
//3.将size的高度设为最大值
CGSize size = CGSizeMake(355, CGFLOAT_MAX);
//4.将label的高度设为动态计算出的size的高度
size = [news.title boundingRectWithSize:size options:NSStringDrawingUsesLineFragmentOrigin attributes:attribute context:nil].size;
self.titleLabel.frame = CGRectMake(10, 0, 355, size.height);
以上是关于动态计算Label高度的主要内容,如果未能解决你的问题,请参考以下文章