美文网首页
基本左滑(印象笔记迁移)

基本左滑(印象笔记迁移)

作者: 忆往昔Code | 来源:发表于2018-12-13 11:48 被阅读0次
  • (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
    //第二组可以左滑删除
    if (indexPath.section == 2) {
    return YES;
    }

    return NO;
    }

// 定义编辑样式

  • (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
    return UITableViewCellEditingStyleDelete;
    }

// 进入编辑模式,按下出现的编辑按钮后,进行删除操作

  • (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
    if (editingStyle == UITableViewCellEditingStyleDelete) {

      if (indexPath.section == 2) {
          
    
          
      } 
    

    }
    }

// 修改编辑按钮文字

  • (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath {
    return @"删除";

相关文章

网友评论

      本文标题:基本左滑(印象笔记迁移)

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