對(duì)比自定義等高cell凹蜈,需要幾個(gè)額外的步驟(iOS8開始才支持)
-
添加子控件和contentView之間的間距約束
- 設(shè)置tableViewCell的真實(shí)行高和估算行高
// 告訴tableView所有cell的真實(shí)高度是自動(dòng)計(jì)算(根據(jù)設(shè)置的約束來計(jì)算)
self.tableView.rowHeight = UITableViewAutomaticDimension;
// 告訴tableView所有cell的估算高度
self
如果要支持iOS8之前
- 如果cell內(nèi)部有自動(dòng)換行的label,需要設(shè)置preferredMaxLayoutWidth屬性
- (void)awakeFromNib
{
// 手動(dòng)設(shè)置文字的最大寬度(目的是:讓label知道自己文字的最大寬度饲宿,進(jìn)而能夠計(jì)算出自己的frame)
self.text_label.preferredMaxLayoutWidth = [UIScreen mainScreen].bounds.size.width - 20;
}
- 設(shè)置tableView的cell估算高度
// 告訴tableView所有cell的估算高度(設(shè)置了估算高度涝动,就可以減少tableView:heightForRowAtIndexPath:方法的調(diào)用次數(shù))
self.tableView.estimatedRowHeight = 200;
- 在代理方法中計(jì)算cell的高度
XMGStatusCell *cell;
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
// 創(chuàng)建一個(gè)臨時(shí)的cell(cell的作用:根據(jù)模型數(shù)據(jù)布局所有的子控件迈勋,進(jìn)而計(jì)算出cell的高度)
if (!cell) {
cell = [tableView dequeueReusableCellWithIdentifier:ID];
}
// 設(shè)置模型數(shù)據(jù)
cell.status = self.statuses[indexPath.row];
return cell.height;
}
- (CGFloat)height
{
// 強(qiáng)制布局cell內(nèi)部的所有子控件(label根據(jù)文字多少計(jì)算出自己最真實(shí)的尺寸)
[self layoutIfNeeded];
// 計(jì)算cell的高度
if (self.status.picture) {
return CGRectGetMaxY(self.pictureImageView.frame) + 10;
} else {
return CGRectGetMaxY(self.text_label.frame) + 10;
}
}