我在iOS 6上使用过reloadRowsAtIndexPaths:
,运行正常。
[self.tableview beginUpdates];
[self.tableview reloadRowsAtIndexPaths:indexPath withRowAnimation:UITableViewRowAnimationNone];
[self.tableview endUpdates];
这会在iOS 6上调用tableview的cellForRowAtIndexPath:
,但是它不会在iOS 7上调用tableview的cellForRowAtIndexPath:
,所以我无法更新指定的单元格。