继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

iOS 小知识点 UITableViewCell删除相关

ZKReadStone
关注TA
已关注
手记 52
粉丝 32
获赞 323

####背景:
UITableView的使用
cell上有删除按钮,通过cell上的按钮回调实现删除cell和删除数据源

####问题:
除了第一次删除,或者当前cell的indexpath和相对于tableView的indexpath是一致的情况,删除没有问题。
其他的删除就会出现下面的问题:删除错位,会删除cell上显示的indexPath对应于列表的cell。
例如:cell(0,4)删除,就会删除列表上第五个cell

####原因:
cell的删除回调会在删除时捕获当前cell的indexpath,导致出现删除错位,其实删除的是block捕获的indexpath
tableView就会删除相对于列表的indexPath,而不是当前操作的cell

图片描述

####错误代码展示

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    ATableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:NSStringFromClass([ATableViewCell class]) forIndexPath:indexPath];
    __weak typeof(self) weakSelf = self;
    cell.delegateBlock = ^(UIButton * _Nonnull btn) {
        [weakSelf.datas removeObject:self.datas[indexPath.row]];
        [weakSelf.tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationRight];
    };
    cell.textLabel.text = [NSString stringWithFormat:@"(0,%@)",self.datas[indexPath.row]];
    
    return cell;
}

正确代码展示

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    ATableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:NSStringFromClass([ATableViewCell class]) forIndexPath:indexPath];
    __weak typeof(self) weakSelf = self;
    cell.delegateBlock = ^(UIButton * _Nonnull btn) {
        CGPoint point = [btn convertPoint:btn.bounds.origin toView:tableView];
        NSIndexPath *newIndexPath = [tableView indexPathForRowAtPoint:point];
        [weakSelf.datas removeObject:self.datas[newIndexPath.row]];
        [weakSelf.tableView deleteRowsAtIndexPaths:@[newIndexPath] withRowAnimation:UITableViewRowAnimationRight];
    };
    cell.textLabel.text = [NSString stringWithFormat:@"(0,%@)",self.datas[indexPath.row]];
    
    return cell;
}
打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP

相关阅读

MG--旭日东升