-[UITableViewCell _setDeleteAnimationInProgress:]: message sent to deallocated instance 0x136dc6

删除最后一个cell时,崩溃!

*** -[UITableViewCell _setDeleteAnimationInProgress:]: message sent to deallocated instance 0x136dc6

是最后一个cell时,做一下延迟处理

dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.3 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
    [self.tableView reloadData];
});

参考:
http://blog.csdn.net/zly116813/article/details/39646093

你可能感兴趣的:(-[UITableViewCell _setDeleteAnimationInProgress:]: message sent to deallocated instance 0x136dc6)