我需要为 UITableView 中的所有单元格设置自定义单元格高度。在这种方法中:
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
我试试这个:
if ([[tableView cellForRowAtIndexPath:indexPath] reuseIdentifier] == @"imageCell")
因为我在情节提要中有 3 个不同的单元格设置了不同的标识符。但是我的应用程序在这里崩溃了EXC_BAD_ACCESS
。
知道为什么吗?
谢谢。