UITableView EndUpdates在ios 8 beta中崩溃

时间:2014-09-04 12:11:19

标签: ios uitableview ios8

我写了一段代码

[self.pItemArray insertObject:breakingItem  atIndex:0];
NSArray *array = [NSArray arrayWithObject:[NSIndexPath indexPathForRow:0 inSection:0]];
[self.pTable beginUpdates];
[self.pTable insertRowsAtIndexPaths:array withRowAnimation:UITableViewRowAnimationNone];
[self.pTable endUpdates];

但它只在endUpdtes上的ios 8中崩溃。

  

断言失败 - [UITableView _endCellAnimationsWithContext:],/ SourceCache / UIKit / UIKit-3302.3.1 / UITableView.m:1581

在ios7或更低版​​本中工作正常。

请帮忙。

0 个答案:

没有答案