0

这是添加删除按钮的代码:

 (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) {

    }
}
4

1 回答 1

0

你不能使用 UITableViewCell 做到这一点,你需要创建自己的自定义 UITableViewCells 并在单元格进入编辑模式时自己布置这些视图。

于 2013-11-04T09:23:07.247 回答