iOS 学习 - 8 TableViewCell 自适应高度

思路:计算文字的高度,存进数组

加注:存在中文,需要加一行文字的高度,也就是 font

主要代码

#pragma mark -- UITableViewDelegate
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
NSNumber *height = self.heightArray[indexPath.row];
//含有中文需要加一行字体的高度,也就是 font
return height.floatValue;
}
//存储计算出来的高度
- (NSMutableArray *)heightArray {
if (!_heightArray) {
_heightArray = [NSMutableArray arrayWithCapacity:];
for (int i = ; i < self.dataSource.count; i++) {
NSString *str = [NSString stringWithFormat:@"%@",_dataSource[i]];
CGFloat height = [HeightModel calculate:str];
[_heightArray addObject:[NSNumber numberWithFloat:height]];
}
}
return _heightArray;
}
//计算文字高度
+ (CGFloat)calculate:(NSString *)text { CGSize maxSize = CGSizeMake(KScreenWidth, MAXFLOAT);
CGSize trueSize = [text boundingRectWithSize:maxSize
options:
(NSStringDrawingUsesFontLeading | NSStringDrawingUsesLineFragmentOrigin)
attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:]}
context:nil].size;
NSLog(@"%f",trueSize.height);
return trueSize.height+;
}

介绍一个类库:SDAutoLayout,比自己造的*好多了

上一篇:mysql中的limit


下一篇:解决iOS中tabBarItem图片默认颜色的问题(指定代码渲染模式为以原样模式的方式显示出来)