iOS UI笔记-TableView-02 - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{ if (indexPath.row == 0 && indexPath.section == 2) { return 80; // 第三个section中第一行 }return 44;} // 设置行高
?