我写了一段代码
[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或更低版本中工作正常。
请帮忙。