美文网首页
tableView 左滑删除

tableView 左滑删除

作者: 彼岸花下的暗影 | 来源:发表于2019-05-10 14:35 被阅读0次

TableView 左滑删除


- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
    return YES;
}

- (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 @"Delete";
}


相关文章

网友评论

      本文标题:tableView 左滑删除

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