因此,当我输入下面的 if 语句时,我收到了 EXC Bad Access 错误。令人沮丧的是,我已经确认 indexPath 和 tableView 指向正确的位置。此外,完全相同的 if 语句在我的代码中的其他地方在同一个实现文件中使用,没有错误。
将不胜感激。
-(CGFloat)tableView:(UITableView *)tableView
heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if([indexPath row] == ([tableView numberOfRowsInSection:[indexPath section]]-1))
{
return 44.0;
} else {
return 60.0;
}
}