iOS UITableView 左滑删除

//侧滑允许编辑cell

- (BOOL)tableView:(UITableView*)tableView canEditRowAtIndexPath:(NSIndexPath*)indexPath{

returnYES;

}

//执行删除操作

- (void)tableView:(UITableView*)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath*)indexPath{

NSLog(@"删除删除删除删除删除删除删除删除删除");

}

//侧滑出现的文字

- (NSString*)tableView:(UITableView*)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath*)indexPath{

return@"删除";

}

你可能感兴趣的:(iOS UITableView 左滑删除)