mansory純代碼自動(dòng)計(jì)算cell高度

簡(jiǎn)介

我們?cè)谑褂胢ansory的過(guò)程中,發(fā)現(xiàn)用布局控件很快、很容易,但是具體到怎么計(jì)算UITableViewCell的高度的時(shí)候,如果不是用得故事版和XIB,就遇到了麻煩。在公司中團(tuán)隊(duì)開(kāi)發(fā)一般是用純代碼寫(xiě)的比較多,因?yàn)檫@樣便于多人開(kāi)發(fā)和日后的維護(hù);但是我們使用了autolayout就沒(méi)有了frame的概念,那怎么計(jì)算cell的高度呢?

了解tableView數(shù)據(jù)源方法的調(diào)用順序

  • 先調(diào)用 ,返回多少組(會(huì)被多次調(diào)用,兩次)
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
  • 然后調(diào)用,返回某個(gè)單元格內(nèi)容(會(huì)被多次調(diào)用)
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
  • 再調(diào)用,返回這個(gè)單元格的高度(會(huì)被多次調(diào)用)
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

使用mansory約束控件時(shí),如何才能夠自動(dòng)計(jì)算cell的高度?

1 需要利用到模型數(shù)據(jù)來(lái)計(jì)算出cell的總的高度
2 cell需要提供一個(gè)接口給外界調(diào)用,傳入模型數(shù)據(jù)來(lái)計(jì)算cell的高度

-(CGFloat)rowHeightWithCellModel:(HomeModel *)homeModel;

3 注意性能優(yōu)化,由于tableView的滾動(dòng),模型數(shù)據(jù)被反復(fù)設(shè)置,而cell的高度只需要利用獲得的模型數(shù)據(jù)計(jì)算一次就可以,使用懶加載的方式計(jì)算高度,當(dāng)模型數(shù)據(jù)重新獲取時(shí),重新計(jì)算

 self.tableView.separatorStyle=UITableViewCellSeparatorStyleNone;//去掉默認(rèn)下劃線
 self.tableView.estimatedRowHeight=200; //預(yù)估行高 可以提高性能
 self.tableView.rowHeight = 88;

模型的屬性

HomeModel.h
//單元格的高度
@property (nonatomic,assign) CGFloat cellHeight;
HomeModel.m

//惰性初始化是這樣寫(xiě)的
-(CGFloat)cellHeight
{
    //只在初始化的時(shí)候調(diào)用一次就Ok
    if(!_cellHeight){
        HomeViewCell *cell=[[HomeViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:homeIndentifier];
        // 調(diào)用cell的方法計(jì)算出高度
        _cellHeight=[cell rowHeightWithCellModel:self];
        NSLog(@"計(jì)算的高度是:%f", _cellHeight);
    }
    
    return _cellHeight;
}

cell在創(chuàng)建的時(shí)候,初始化自己的子控件,添加約束,把能添加的約束都添加上,但是還有某些控件的高度是由數(shù)據(jù)決定的,有些控件的高度是固定的,而某些控件還缺少必要的高度約束,在cell提供的接口-(CGFloat)rowHeightWithCellModel:(HomeModel *)homeModel方法中補(bǔ)上,調(diào)用[self layoutIfNeeded];更新約束

//在表格cell中 計(jì)算出高度
-(CGFloat)rowHeightWithCellModel:(HomeModel *)homeModel
{
    _homeModel=homeModel;
    __weak __typeof(&*self)weakSelf = self;
    //設(shè)置標(biāo)簽的高度
    [self.content mas_makeConstraints:^(MASConstraintMaker *make) {
        // weakSelf.contentLabelH  這個(gè)會(huì)調(diào)用下面的懶加載方法
        make.height.mas_equalTo(weakSelf.contentLabelH);
    }];
    
    // 2. 更新約束
    [self layoutIfNeeded];
    
    //3.  視圖的最大 Y 值
    CGFloat h= CGRectGetMaxY(self.content.frame);
   
    return h+marginW; //最大的高度+10
}

/*
 *  懶加載的方法返回contentLabel的高度  (只會(huì)調(diào)用一次)
 */
-(CGFloat)contentLabelH
{
    // 標(biāo)簽的高度
    if(!_contentLabelH){
        CGFloat h=[self.homeModel.content boundingRectWithSize:CGSizeMake(([UIScreen mainScreen].bounds.size.width)-2*marginW, MAXFLOAT) options:NSStringDrawingUsesLineFragmentOrigin attributes:@{NSFontAttributeName:[UIFont systemFontOfSize:16]} context:nil].size.height;
        
        _contentLabelH=h+marginW;  //內(nèi)容距離底部下劃線10的距離
    }
    return _contentLabelH;
}

cell初始化子控件

#pragma mark 添加子控件
-(void)setupUI
{
    //1.添加圖片
    UIImageView *icon=[UIImageView new];
    icon.contentMode=UIViewContentModeScaleAspectFill;
    icon.clipsToBounds=YES;
    [self.contentView addSubview:icon];
    self.icon=icon;
    //2.添加label
    UILabel *content=[UILabel new];
    content.numberOfLines=0; //多行顯示
    content.font=[UIFont systemFontOfSize:16];
    [self.contentView addSubview:content];
     self.content=content;
    //3.底部添加一條線
    UIImageView *line=[UIImageView new];
    line.backgroundColor=[UIColor grayColor];
    [self.contentView addSubview:line];
    self.line=line;
    
    //設(shè)置約束
     __weak __typeof(&*self)weakSelf = self;
    //1.設(shè)置圖片的大小
    [self.icon mas_makeConstraints:^(MASConstraintMaker *make) {
        make.height.mas_equalTo(iconH);  //頭像的高度
        make.width.mas_equalTo(iconW); //頭像的寬度
        make.top.equalTo(weakSelf.mas_top).offset(marginW) ; //距離頂部10的距離
        make.centerX.equalTo(weakSelf.mas_centerX); //頭像的中心x和cell的中心x一樣
        
       // make.centerY.equalTo(self.mas_centerY);  頭像的中心y和cell的中心y一樣
    }];
    //2.設(shè)置contentLabel
    [self.content mas_makeConstraints:^(MASConstraintMaker *make) {
        make.top.equalTo(weakSelf.icon.mas_bottom).offset(marginW); //文本距離頭像底部10個(gè)間距
        make.left.equalTo(weakSelf.mas_left).offset(marginW);  //文本距離左邊的距離
        make.right.equalTo(weakSelf.mas_right).offset(-marginW);  //文本距離右邊的距離
        
        //文本高度 我們?cè)跀?shù)據(jù)源方法中獲取模型中cellHeight屬性時(shí)再計(jì)算
        #warning 未完待續(xù)。。。
    }];
    
    
    //3.設(shè)置下劃線的大小
    [self.line mas_makeConstraints:^(MASConstraintMaker *make) {
        make.height.mas_equalTo(0.5);
        make.left.equalTo(weakSelf.mas_left).offset(0);
        make.right.equalTo(weakSelf.mas_right).offset(0);
        make.bottom.equalTo(weakSelf.mas_bottom).offset(-marginW); //下劃線距離底部10的距離
    }];
    
}

tableView的數(shù)據(jù)源方法和代理方法

/*
  返回多少行
 */
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    //因?yàn)槭俏覀冏远x的數(shù)據(jù) 所以 這里寫(xiě)arr而不是arrModel  因?yàn)橹挥羞@樣才會(huì)調(diào)用arr的懶加載犯法
    return self.arr.count;
}

/*
    返回表格單元
 */
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    //取出模型
    HomeModel *model=self.arrModel[indexPath.row];
    
    HomeViewCell *cell = [tableView dequeueReusableCellWithIdentifier:homeIndentifier];
    if (cell == nil) {
        cell = [[HomeViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:homeIndentifier];
    }
    
    //傳遞模型給cell
    cell.homeModel=model;
    
    return cell;
}

/*
 *  返回每一個(gè)表格單元的高度
 */

-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    
    
    //取出模型
    HomeModel *homeModel=self.arrModel[indexPath.row];
    
    return    homeModel.cellHeight ;
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書(shū)系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容