iOS 静态表格cell的自定义高度处理

静态表格的cell都为已知,不能自适应高度?不存在的。

这是一个简单的问题,有着简单的处理方式,如果不知道就会很难受,难受的想捏爆自己的蛋。

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {

           if (indexPath.section == 0)  {

             //在需要自适应高度的cell处 设置

                 return UITableViewAutomaticDimension;

          }

          return 50;

}


你可能感兴趣的:(iOS 静态表格cell的自定义高度处理)