1

由于uncaught exception NSInternalInconsistencyException,终止应用程序

原因: Cell animation stop fraction must be greater than start fraction 使用中

[self.tableView insertRowsAtIndexPaths:indexPathsToInsert withRowAnimation:insertAnimation];
[self.tableView deleteRowsAtIndexPaths:indexPathsToDelete withRowAnimation:deleteAnimation];
4

1 回答 1

0

它在 iOS7.x 上的错误解决方案是删除以下代表,

tableView:viewForFooterInSection:
tableView:heightForFooterInSection:

并将它们替换为 viewDidLoad 中的以下代码行。

tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];
于 2015-02-18T10:54:02.970 回答