iOS UI相关之UITableView的高度计算01-上

“UITableView的高度计算”这个题目主要通过一个tablveView高度计算的例子从浅到深讲一下cell的高度计算的方式

一,在cell内部计算高度(会多次调用cell内部代码,造成资源的很大浪费)
  • 在cell高度不一致的时候,我们首先想到的是重写下面的方法:- (CGFloat)tableView:(UITableView )tableView heightForRowAtIndexPath:(NSIndexPath )indexPath;
    所以我们需要提前算出高度;但是一般cell的高度都是由cell的内容决定的,所以在cell内部通过其内容来计算高度然后返回height貌似成了一个较好的办法。但是有一个问题就是:cell需要先得到高度之后才能进行展示。这也就造成了我们返回cell高度的时候需要先计算一次高度,然后展示出来的时候再计算一次高度。这种方式造成了内存的很大浪费,有时候甚至会卡帧。这种方式具体如下:
    (用了Masory进行了约束以减少代码量)

  • 1,在cell内部接受到数据的时候进行赋值然后约束,然后获取高度的值:

- (void)setStatus:(IMStatus *)status{
    _status = status;
    
    _iconView.image = [UIImage imageNamed:status.icon];
    [_iconView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.left.mas_equalTo(self).with.mas_offset(20);
        make.width.height.mas_equalTo(50);
        
    }];
    
    _nameLabel.text = status.name;
    [_nameLabel mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.mas_equalTo(_iconView.mas_right).with.offset(10);
        make.centerY.mas_equalTo(_iconView.mas_centerY);
        make.width.mas_greaterThanOrEqualTo(5);
        make.height.mas_equalTo(30);
    }];
    
    _vipView.image  = [UIImage imageNamed:@"vip"];
    [_vipView mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.mas_equalTo(_nameLabel.mas_right).with.offset(10);
        make.centerY.mas_equalTo(_nameLabel.mas_centerY);
        make.width.height.mas_equalTo(20);
    }];
    
    _textLabel.text = status.text;
    [_textLabel mas_makeConstraints:^(MASConstraintMaker *make) {
        make.left.mas_equalTo(_iconView.mas_left);
        make.width.mas_equalTo(300);
        make.top.mas_equalTo(_iconView.mas_bottom).with.offset(20);
    }];
    
    
   if (status.picture.length>0) {
        _picView.hidden = NO;
        _picView.image = [UIImage imageNamed:status.picture];
        [_picView mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.mas_equalTo(_textLabel.mas_bottom).with.offset(20);
            make.left.mas_equalTo(_textLabel.mas_left);
            make.width.height.mas_equalTo(100);
        }];
        [self layoutSubviews];
        self.height = _picView.frame.origin.y + 100 + 20;
    }else{
        _picView.hidden = YES;
        [self layoutSubviews];
        
        CGFloat textHeihgt = [_textLabel sizeThatFits:CGSizeMake(300, MAXFLOAT)].height;
        self.height = _textLabel.frame.origin.y + textHeihgt + 20;
    }
}
  • 2,在控制器中把数据传给cell得到高度:
    下面可以看到在获取高度的时候传第一次数据,在cell展示的时候又传递了一次数据
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    IMTableViewCell *cell = [IMTableViewCell cellWithTableView:tableView];
    IMStatus *status = _statuses[indexPath.row];
    cell.status = status;
    return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    
    //这里是不能拿到当前indexPath的cell的,因为tableView是先计算了高度之后才会有cell添加,也就是说cellForRowAtIndexPath:这个方法是需要调用高度计算的这个函数的,所以直接循环会死掉
    //IMTableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    
    //所以在排除了MVVM模式之外应该就只能在这个函数内部计算高度
    IMTableViewCell *cell = [IMTableViewCell cellWithTableView:tableView];
    IMStatus *status = _statuses[indexPath.row];
    cell.status = status;//可以在cell的相关方法里看到调用了[self layoutSubviews];就是为了能够拿到会后的高度
    return  cell.height;
}
二,把cell中的内容抽取到自定义的UIView中计算

然后我想到既然在cell内部计算需要调用多次,能不能把cell计算的内容都抽取到一个UIView中去呢。‘’‘’‘’‘’

三,把cell中frame计算抽取到自定义的NSObject中
  • 但是用第二种方式有一个缺点:就是会创建对象。这个对于我们而言也是比较难接受的,那么就想到了第三方方式:把cell中高度计算的代码抽取到工具类中进行计算,具体代码如下:*

  • 1, IMStatusFrame工具类的封装:(frame计算的代码的抽取)

- (void)setStatus:(IMStatus *)status{
    _status = status;
    _iconViewF = CGRectMake(10, 10, 50, 50);
    static UILabel *stringLabel = nil;
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{//生成一个同于计算文本高度的label
        stringLabel = [[UILabel alloc] init];
        stringLabel.numberOfLines = 0;
    });
    stringLabel.text = status.name;
    //NSLog(@"nameLabel ---- %@",stringLabel.text);
    
    CGFloat nameLabelW = [stringLabel sizeThatFits:CGSizeMake(MAXFLOAT, MAXFLOAT)].width;
    CGFloat nameLabelH = [stringLabel sizeThatFits:CGSizeMake(MAXFLOAT, MAXFLOAT)].height;
    _nameLabelF = CGRectMake(80, (60-nameLabelH)/2, nameLabelW, nameLabelH);

    _vipViewF = CGRectMake(CGRectGetMaxX(_nameLabelF) + 10, CGRectGetMinY(_nameLabelF), 20, 20);
    
    stringLabel.text = status.text;
    CGFloat textLabelW = [stringLabel sizeThatFits:CGSizeMake(400, MAXFLOAT)].width;
    CGFloat textLabelH = [stringLabel sizeThatFits:CGSizeMake(400, MAXFLOAT)].height;
    _textLabelF = CGRectMake(CGRectGetMinX(_iconViewF), CGRectGetMaxY(_iconViewF)+ 20, textLabelW, textLabelH);
    
    if (status.picture.length>0) {
        _picViewF = CGRectMake(CGRectGetMinX(_iconViewF), CGRectGetMaxY(_textLabelF)+20, 200, 200);
        self.height = CGRectGetMaxY(_picViewF) + 10;
    }else{
        self.height = CGRectGetMaxY(_textLabelF) + 10;
    }
}

  • 2,然后在控制器中只需要把数据都存在IMStatusFrame对象中,完成计算,然后存进数组中作为整个tableView的数据源,在需要的时候直接从数组中调用而不是创建新的对象什么的。
//数据封存,在封存的时候已经完成了计算了呢
- (NSMutableArray *)statusFrame{
    if (_statusFrame == nil) {
        _statusFrame = [NSMutableArray array];
        NSArray *statusArray = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"weibo.plist" ofType:nil]];
        [statusArray enumerateObjectsUsingBlock:^(NSDictionary *dict, NSUInteger idx, BOOL * _Nonnull stop) {
            IMStatus *status = [IMStatus statusWithDict:dict];
            IMStatusFrame *frame = [[IMStatusFrame alloc] init];
            frame.status = status;
            [_statusFrame addObject:frame];
        }];
    }
    return _statusFrame;
}

//在下面的两个方法中直接调用数组中IMStatusFrame对象的内容即可
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    IMTableViewCell *cell = [IMTableViewCell cellWithTableView:tableView];
    cell.frames = self.statusFrame[indexPath.row];
    return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
    //所以在排除了MVVM模式之外应该就只能在这个函数内部计算高度
    IMStatusFrame *frame = self.statusFrame[indexPath.row];
    return  frame.height+10;
}

  • 3,在cell内部直接调用IMStatusFrame内部的frame即可
- (void)setFrames:(IMStatusFrame *)frames{
    _frames = frames;
    
    _iconView.image = [UIImage imageNamed:frames.status.icon];
    _iconView.frame = frames.iconViewF;
    
    _nameLabel.text = frames.status.name;
    _nameLabel.frame = frames.nameLabelF;
    
    _vipView.image  = [UIImage imageNamed:@"vip"];
    _vipView.frame = frames.vipViewF;
    
    _textLabel.text = frames.status.text;
    _textLabel.frame = self.frames.textLabelF;
    
    if (frames.status.picture.length>0) {
        _picView.hidden = NO;
        _picView.image = [UIImage imageNamed:frames.status.picture];
        _picView.frame = frames.picViewF;
    }else{
        _picView.hidden = YES;
    }
}

至此,高度计算基本就搞定了,但是这样做还是比较麻烦,下次讲一下自动布局下的高度计算以及其tableView在高度计算的优化

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,723评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,003评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,512评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,825评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,874评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,841评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,812评论 3 416
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,582评论 0 271
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,033评论 1 308
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,309评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,450评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,158评论 5 341
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,789评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,409评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,609评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,440评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,357评论 2 352

推荐阅读更多精彩内容