删除最后一个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];
});
网友评论