如何在iOS中降低特定的UITableViewcell高度?

时间:2013-04-26 14:42:11

标签: ios uitableview

我的要求是我在单元格中使用7个标签显示7行数据。但有时数据是6 r 5行的变化,那时我需要减少单元格大小取决于行数。我使用下面的代码,但是当End Updates方法执行时,app崩溃了。

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
rowHeight = 180;
return rowHeight;}

并在cellForRowAtIndexPath方法中,我将代码编写为

    rowHeight = 140;
    [tableView beginUpdates];
   [tableView endUpdates];

但是当我尝试执行endUpdates方法时,我的应用程序崩溃了。

0 个答案:

没有答案