当indexPath.section == 3 && indexPath.row == 3
. 第一次触发断点,我运行
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
该单元格与 处的单元格相同indexPath.section == 0 && indexPath.row == 0
,而不是nil
,这是我所期望的。我确定第 3 节的行数是 4。为什么不是单元格nil
?