美文网首页
iOS 删除tableviewCell方法

iOS 删除tableviewCell方法

作者: zxb有缘 | 来源:发表于2021-06-30 14:40 被阅读0次
    • (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath{
      return YES;
      }
    • (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
      return UITableViewCellEditingStyleDelete;
      }
    • (nullable NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath{
      return @"删除";
      }
    • (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
      NSLog(@"删除");
      [self removeHomeRoom:indexPath.row];
      }

    相关文章

      网友评论

          本文标题:iOS 删除tableviewCell方法

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