以下是添加删除按钮的代码:
(BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
{
return YES;
}
(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
NSLog(@"delete pressed");
}
else if (editingStyle == UITableViewCellEditingStyleInsert) {
}
}
答案 0 :(得分:0)
使用UITableViewCell无法做到这一点,您需要创建自己的自定义UITableViewCells并在单元格进入编辑模式时自己布置这些视图。