我的要求是我使用 7 个标签在单元格中显示 7 行数据。但有时数据会像 6 r 5 行一样变化,那时我需要减小单元格大小取决于行数。我在下面使用代码,但应用程序在执行 End Updates 方法时崩溃。
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
rowHeight = 180;
return rowHeight;}
在 cellForRowAtIndexPath 方法中,我将代码编写为
rowHeight = 140;
[tableView beginUpdates];
[tableView endUpdates];
但是当我尝试执行 endUpdates 方法时,我的应用程序崩溃了。