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

1、cell全部应用自动布局

2、tableView初始化时

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

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

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

你可能感兴趣的:(2022-06-10(tableView+自动布局cell+可变行高))