删除所有的cell:
//找到所有的indexPath
NSArray *arr = [self.tableView indexPathsForRowsInRect:CGRectMake(0, 0, self.view.frame.size.width, self.tableView.contentSize.height)];[arr enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) {
[self.tableView selectRowAtIndexPath:obj animated:YES scrollPosition:UITableViewScrollPositionNone];
}];
//拿到现在是选择状态的indexP数组。。
/*
**这个属性方便了太多!
*/
NSArray *arr = self.tableView.indexPathsForSelectedRows;
//此处从数组删除注意:按照arr 顺序删除会造成越界崩溃、、
NSMutableIndexSet *set = [NSMutableIndexSet indexSet];
for (NSInde