我想在我的项目中使用“滑动删除”选项。
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete)
{
NSDictionary *userData = [_contactsArray objectAtIndex:indexPath.row];
NSLog(@"delete row %@",userData);
}
}
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
我正在使用此代码,但它给出了我不想要的以下输出。
我不希望单元格上的左侧减号。我只想滑动并显示删除按钮。我在以前的项目中使用的相同代码,它工作正常(即只滑动显示删除按钮,左侧没有减号)
请帮我解决这个问题。