UITableviewCell高度自适应

以前真的是太孤陋寡闻了,每次遇到tableviewcell中既包含长度不定的label还有时有时无的图片是,对于高度的自适应,做起来简直不能再令人抓狂了。后来才发现是自己的方法大错特错了,其实tableviewcell的高度自适应真的很简单。

一、在初始化UItableView的时候,写上如下代码

 // 1.设置行高为自动撑开
    tableView.rowHeight = UITableViewAutomaticDimension;
    // 2.设置一个估计的行高,只要大于0就可以了,但是还是尽量要跟cell的高差不多
    tableView.estimatedRowHeight = 100;
    // 3.走完了以上两步就不需要走 UITableViewDelegate 返回行高的那个代理了

注意:当写上以上代码的时候,就不需要写UITableViewDelegate返回行高的这个方法。

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

二、自定义Cell的布局(最关键的部分)

我们用Masory来布局,相信大家对这都不陌生,就不细说了
1.搭建约束,规则:自上而下,自左而右
2.cell中的UIlabel不要强制设置他的宽高,让UIlabel根据内容自适应
3.界面中,最上方的控件一定要以self.contentview.mas_top来设置,第二个控件以最上方控件的mas_bottom来设置,以此类推;直到最低下的控件,必须要以self.contentview.mas_bottom来设置。只有这样才能达到高度自适应的要求(这一步很关键,大家要细细体会)
4.中间的控件尽量不要设置高度,让控件的内容自己撑开。
5.自左而右也是按照同样的逻辑。

三、举例说明

我们要实现如下这样的一个界面

UITableviewCell高度自适应_第1张图片
周星驰.png

该界面的Cell的代码如下:

- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
    if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
        // 绘制cell
        // 1.创建所有的控件
        self.nameLabel = [[UILabel alloc] init];
        self.nameLabel.font = [UIFont systemFontOfSize:14];
        [self.contentView addSubview:self.nameLabel];
        
        self.timeLabel = [[UILabel alloc] init];
        self.timeLabel.font = [UIFont systemFontOfSize:11];
        [self.contentView addSubview:self.timeLabel];
        
        self.imageView1 = [[UIImageView alloc] init];
        [self.contentView addSubview:self.imageView1];
        
        self.contentLabel = [[UILabel alloc] init];
        self.contentLabel.numberOfLines = 0;
        self.contentLabel.font = [UIFont systemFontOfSize:20];
        [self.contentView addSubview:self.contentLabel];
        
        // 2.搭建约束,规则:自上而下,自左至右
        [self.nameLabel mas_makeConstraints:^(MASConstraintMaker *make) {
            // 3.昵称label在最上侧,因此设置一个距离self.contentView.mas_top的约束
            make.top.equalTo(self.contentView.mas_top).offset(20.0);
            // 4.昵称label在最左侧,因此设置一个距离self.contentView.mas_left的约束
            make.left.equalTo(self.contentView.mas_left).offset(20.0);
            // 5.不要强制设置昵称label的宽高,让昵称label根据内容自动撑开
        }];
        
        [self.timeLabel mas_makeConstraints:^(MASConstraintMaker *make) {
            // 6.时间label在昵称label的右侧(假设在右侧,为了解释左右布局)
            make.left.equalTo(self.nameLabel.mas_right).offset(20.0);
            make.bottom.equalTo(self.nameLabel.mas_bottom);
            make.right.lessThanOrEqualTo(self.contentView.mas_right).offset(-20.0);
        }];
        
        [self.imageView1 mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.equalTo(self.nameLabel.mas_left); // 与昵称label左对齐
            make.top.equalTo(self.nameLabel.mas_bottom).offset(20.0);
#warning 可以设死宽和高,也可以不设。如果不设那么图片会自动撑开
            make.size.mas_equalTo(CGSizeMake(100.0, 100.0));
        }];
        
        [self.contentLabel mas_makeConstraints:^(MASConstraintMaker *make) {
            // 内容label在最下面,两个约束是必须要设置的
            // 7.距离上面一个label的距离
            make.top.equalTo(self.imageView1.mas_bottom).offset(20.0);
            // 8.距离self.contentView.mas_bottom的距离
            make.bottom.equalTo(self.contentView.mas_bottom).offset(-20.0);
            // 上面两个步骤决定了内容的高度
            
            make.left.equalTo(self.contentView.mas_left).offset(20.0);
            make.right.equalTo(self.contentView.mas_right).offset(-20.0);
        }];
        
        /*
         精髓:1.约束规则必须按照自上而下,自左至右的规则
         2.自上而下布局需要:下面的view的top与上面的view的bottom搭建约束,第一个view的top要与contentView的top搭建约束,最后一个的View的bottom要与contentView的bottom搭建约束
         3.中间尽量不要设置高度,让label的内容撑开
         4.自左至右也是按照同样的逻辑
         */
        
    }
    
    return self;
}

方法很简单,需要细细体会一下,你会有一种豁然开朗的感觉!!小小码农一枚,与大家分享工作中的小小经验!

你可能感兴趣的:(UITableviewCell高度自适应)