不等高Cell
2016-12-12 本文已影响9人
FredYJH
计算字符串一行的高度
// 文字的字体大小
NSDictionary *nameAtt = @{NSFontAttributeName:[UIFont systemFontOfSize:17]};
// 文字的尺寸
CGSize nameSize = [self.name sizeWithAttributes:nameAtt];
计算字符串多行的高度
// 文字的字体大小
NSDictionary *nameAtt = @{NSFontAttributeName:[UIFont systemFontOfSize:17]};
// 文字的尺寸和高度
CGSize textSize = CGSizeMake(宽度,MAXFLOAT);高度不限制
CGFloat textHeight = [self.name sizeWithFont:[UIFont systemFontOfSize:17 constrainedToSize:textSize].height;