美文网首页
2022-06-10(tableView+自动布局cell+可变

2022-06-10(tableView+自动布局cell+可变

作者: ImmortalSummer | 来源:发表于2022-06-10 14:57 被阅读0次

    1、cell全部应用自动布局

    2、tableView初始化时

    tableView.rowHeight = UITableViewAutomaticDimension;
    tableView.estimatedRowHeight = 100;
    

    3、不再实现设置行高代理方法

    ///不再实现该方法
    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
    

    相关文章

      网友评论

          本文标题:2022-06-10(tableView+自动布局cell+可变

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