iOS开发 Objective-C

iOS UITableViewCell 高度的缓存

2018-04-08  本文已影响37人  LuKane

关于如何让 tableViewCell的高度 给缓存起来

实例代码(我是用 Masonry进行布局的)

(1)当前模型

/*下面三个属性是 打酱油的*/
@property (nonatomic,strong) UIColor *iconColor;
@property (nonatomic,copy  ) NSString *name;
@property (nonatomic,copy  ) NSString *job;

/* 内容(这里面文字 有多有少) */
@property (nonatomic,copy  ) NSString *content;
/* 来记录 cell 的高度 */
@property (nonatomic,assign) CGFloat  cellHeight;

(2)当前cell.h

@class FriendModel;
@interface FriendCell : UITableViewCell
/* 类方法 实现 cell的 循环利用 */
+ (instancetype)friendCellWithTableView:(UITableView *)tableView;
/* 通过 setter 方法, 给cell上的控件 设置值 */
@property (nonatomic,strong) FriendModel *friendM;

@end

当前cell.m

- (void)setFriendM:(FriendModel *)friendM{
    _friendM = friendM;
    
    // 给控件设置 内容
    _iconView.backgroundColor = friendM.iconColor;
    _nameLabel.text = friendM.name;
    _jobLabel.text = friendM.job;
    _contentLabel.text = friendM.content;
    
    /* 调用一次 layoutIfNeeded, 来重新约束控件 */ 
    [self layoutIfNeeded];
}
// 布局 控件 layoutSubviews
- (void)layoutSubviews{
    [super layoutSubviews];
    
    [_iconView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.and.top.mas_equalTo(15);
        make.size.mas_equalTo(50);
    }];
    
    [_nameLabel mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.equalTo(_iconView.mas_right).offset(15);
        make.top.equalTo(_iconView.mas_top);
        make.height.mas_equalTo(20);
    }];
    
    [_jobLabel mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.and.height.equalTo(_nameLabel);
        make.top.equalTo(_nameLabel.mas_bottom).offset(10);
    }];
    
    [_contentLabel mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.equalTo(_nameLabel);
        make.top.equalTo(_jobLabel.mas_bottom).offset(15);
    }];
    
    
    /* 这个地方 判断当前模型的 cellHeight 是否有值,如果没有,则获取高度 */
    if(_friendM.cellHeight == 0){
        [self layoutIfNeeded]; // 这里必须加, 因为这里是获取高度,相当于布局得刷新一遍
        _friendM.cellHeight = CGRectGetMaxY(_contentLabel.frame) + 20;
    }
}

(3)当前控制器

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    FriendModel *friendM = self.dataArr[indexPath.row];
    return friendM.cellHeight; // 直接返回当前模型的cellHeight就OK
}
上一篇下一篇

猜你喜欢

热点阅读