美文网首页
IOSUITableView左滑删除

IOSUITableView左滑删除

作者: 汤姆杰瑞 | 来源:发表于2020-08-12 09:26 被阅读0次

    不多说,直接上效果图


    图片地址
    UITableView代理方法
    #pragma mark 1.左滑删除
    //左滑编辑样式
    - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
        return UITableViewCellEditingStyleDelete;
    }
    // 进编辑模式,按下出现的编辑按钮后,进行删除操作
    - (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
        if (editingStyle == UITableViewCellEditingStyleDelete) {
    
            //左滑删除之后的数据处理
        }
    }
    // 左滑编辑上面的文字
    - (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath {
        return @"删除";
    }
    //指定可删除的row
    - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
        //第1个section可以删除
        if (indexPath.section == 0) {
            return YES;
        }
        return NO;
    }
    
    #pragma mark 也可以使用 IOS11之后
    - (UISwipeActionsConfiguration *)tableView:(UITableView *)tableView trailingSwipeActionsConfigurationForRowAtIndexPath:(NSIndexPath *)indexPath {
        //删除
        UIContextualAction *deleteRowAction = [UIContextualAction contextualActionWithStyle:UIContextualActionStyleDestructive title:@"delete" handler:^(UIContextualAction * _Nonnull action, __kindof UIView * _Nonnull sourceView, void (^ _Nonnull completionHandler)(BOOL)) {
            //左滑删除之后数据处理操作
        }];
        deleteRowAction.image = [UIImage imageNamed:@"ceshi.png"];//给删除赋值图片
        deleteRowAction.backgroundColor = [UIColor grayColor];//删除背景颜色
        UISwipeActionsConfiguration *Configuration = [UISwipeActionsConfiguration configurationWithActions:@[deleteRowAction]];
        return Configuration;
    }

    相关文章

      网友评论

          本文标题:IOSUITableView左滑删除

          本文链接:https://www.haomeiwen.com/subject/zhfydktx.html