1、cell全部应用自动布局
2、tableView初始化时
tableView.rowHeight = UITableViewAutomaticDimension;
tableView.estimatedRowHeight = 100;
3、不再实现设置行高代理方法
///不再实现该方法
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
1、cell全部应用自动布局
2、tableView初始化时
tableView.rowHeight = UITableViewAutomaticDimension;
tableView.estimatedRowHeight = 100;
3、不再实现设置行高代理方法
///不再实现该方法
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;