使用Autolayout实现cell自适应高度
-------推荐使用最下方的【改进】方法-------
(前排补上一个简单的小Demo:https://github.com/3KK3/AutoFitDemo/tree/master
时间仓促,有些许不足,敬请见谅。)
方法一:
对cell的subview增加针对于
contentView
的约束(注意设置文字的最大宽度);设置tableview预估高度
estimateHeight
在cell拿到数据的地方
cellForRowAtIndexPath
,进行强制刷新布局:先根据数据和cell控件要求计算实际高度,并存入dataModel模型(做缓存),然后调用方法[self layoutIfNeeded]
(第一次显示内容的时候 无需调用setNeedsLayout),这样heightForIndexPath
会紧随其后获取cell的真实高度,此时存入模型的cell的高度就起了作用了
PS:
预估高度机制 启用后 改变cell的加载顺序
原来的顺序 : 先调用
heightForRowAtIndexPath
获取真实高度,拿到高度之后再调用cellForRowAtIndexPath
渲染cell内容启用预估高度之后:先调用
estimatedHeightForRowAtIndexPath
返回代理估计高度,然后再根据预估高度调用cellForRowAtIndexPath
渲染cell内容,同时计算真实高度,最后再调用heightForRowAtIndexPath
拿到计算的真实高度 显示
方法二:
对cell的subview增加针对于contentView的约束(注意设置文字的最大宽度)
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
//只创建一个cell用作测量高度
static MyCell *cell = nil;
if (!cell) cell = [self.tableView dequeueReusableCellWithIdentifier:@"MyCell"];
//这里把数据设置给Cell
cell.titleLabel.text = [_dataSource objectAtIndex:indexPath.row];
[cell layoutIfNeeded];
[cell updateConstraintsIfNeeded];
CGFloat height = [cell.contentView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height;
return height;
}
方法三:
1.在cell中设置多行label的约束:
// 计算UILabel的preferredMaxLayoutWidth值,多行时必须设置这个值,否则系统无法决定Label的宽度
CGFloat preferredMaxWidth = [UIScreen mainScreen].bounds.size.width - (16 + 4) * 2 - 44 - 4;
// Content - 多行
_contentLabel = [UILabel new];
_contentLabel.numberOfLines = 0;
_contentLabel.preferredMaxLayoutWidth = preferredMaxWidth; // 多行时必须设置
[self.contentView addSubview:_contentLabel];
[_contentLabel mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(_titleLabel.mas_bottom).with.offset(4);
make.left.equalTo(_avatarImageView.mas_right).with.offset(4);
make.right.equalTo(self.contentView).with.offset(-4);
make.bottom.equalTo(self.contentView).with.offset(-4);}
];
// 设置高度的Content Hugging
[_contentLabel setContentHuggingPriority:UILayoutPriorityRequired forAxis:UILayoutConstraintAxisVertical];
2.UITableView
再看看UITableView。
用systemLayoutSizeFittingSize:获取Cell的高度
在设定好Cell的约束以后,就可以用systemLayoutSizeFittingSize:方法获取Cell的实际高度,它的参数可以设定为两个系统常量,如下:
UILayoutFittingCompressedSize: 返回合适的最小大小。
UILayoutFittingExpandedSize: 返回合适的最大大小。
为了在“- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath ”方法中计算Cell的高度,我们需要一个专门用于计算高度的Cell实例,可以说算是Cell的“模板”。一般来说,这个实例可以设置成函数的static变量,并只在第一次使用时初始化一次。
model简单缓存高度
为了避免每次滑动时计算高度,可以将Cell的高度缓存下来。如,保存在每一行对应的数据Model(Entity)中,例如:
@interface Entity : NSObject
// Data
@property (copy, nonatomic) NSString *title;
// ...// Cache height
@property (assign, nonatomic) CGFloat cellHeight;
@end
tableView代理方法中代码:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
static Case4Cell *templateCell; static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{ templateCell = [tableView dequeueReusableCellWithIdentifier:NSStringFromClass([Case4Cell class])]; });
// 获取对应的数据
Case4DataEntity *dataEntity = _data[(NSUInteger) indexPath.row];
// 填充数据
[templateCell setupData:dataEntity];
// 判断高度是否已经计算过
if (dataEntity.cellHeight <= 0) {
// 根据当前数据,计算Cell的高度,
// ------ 注意+1 ------
dataEntity.cellHeight = [templateCell.contentView systemLayoutSizeFittingSize:UILayoutFittingCompressedSize].height + 1;
}
return dataEntity.cellHeight;
}
改进:
iOS 8的新特性
iOS 8大大简化了Cell的高度计算,只要:
1.设置好Cell中控件的约束;
- 然后 UITabelView初始化时候:
// UITabelView初始化时候
tableView.rowHeight = UITableViewAutomaticDimension;
tableView.estimatedRowHeight = 80;
3.在UITableview 代理方法:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
// 只用返回这个!
return UITableViewAutomaticDimension;
}
推荐阅读
-
纯css3使用vw和vh实现自适应的方法
-
JavaScript编程开发如何使用jquery实现iframe自适应高度
-
css和css3弹性盒模型实现元素宽度(高度)自适应
-
iOS App开发中使cell高度自适应的黑魔法详解
-
使用Vue的slot插槽分发父组件内容实现高度复用、更加灵活的组件(推荐)
-
javascript原生和jquery库实现iframe自适应高度和宽度
-
iOS应用中使用Auto Layout实现自定义cell及拖动回弹
-
VUE2.0 ElementUI2.0表格el-table自适应高度的实现方法
-
jQuery实现两列等高并自适应高度
-
div实现自适应高度的textarea实现angular双向绑定