宽容他人,放过自己。

计算label文字的宽高方法

Posted on By anchoriteFili

计算label的宽度

CGSize size=[_itemNamelabel.text sizeWithAttributes:@{NSFontAttributeName : [UIFont boldSystemFontOfSize:17]}]; 
size.width

计算label的高度

CGSize size = [self.personalRecommendLabel sizeThatFits:CGSizeMake(width, MAXFLOAT)];
size.height