iOS Cell动态行高

作者: oc123 | 来源:发表于2017-07-19 10:55 被阅读78次

    在iOS开发中,cell动态行高的设置无疑很让人抓狂,本文在此分享一个cell行高的动态获取方法;
    首先,本文介绍的方法适用于直接new创建cell的情况,代码如下:
    cell样式代理方法中添加:

    -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
          //关键部分
          CGRect rect = cell.frame;
          //getCellHeight方法为自定义Cell中获取布局高度的方法
          rect.size.height = [cell getCellHeight];
          cell.frame = rect;
    }
    

    注意,Label的高度自适应设置,本文略过,如要参考请移步链接:http://www.jianshu.com/p/37a8414e015a
    设置Cell的height,实现table的cell高度代理:

    -(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
        if (indexPath.row == 0) {
            return 280;
        }else if (indexPath.row == 1){
            return 44;
        }else{
            //动态计算行高 - wsx注释
            UITableViewCell *cell = [self tableView:tableView cellForRowAtIndexPath:indexPath];//获取对象cell
            return cell.frame.size.height;
        }
    }
    

    这样就能实现cell的动态行高了;
    荆轲刺秦王!

    相关文章

      网友评论

        本文标题:iOS Cell动态行高

        本文链接:https://www.haomeiwen.com/subject/wpghkxtx.html