2022-06-10(tableView+自动布局cell+可变
2022-06-10 本文已影响0人
ImmortalSummer
1、cell全部应用自动布局
2、tableView初始化时
tableView.rowHeight = UITableViewAutomaticDimension;
tableView.estimatedRowHeight = 100;
3、不再实现设置行高代理方法
///不再实现该方法
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;