交换UITableViewCell时看不到“删除”按钮

问题描述

| 我正在尝试从
UITableView
中删除
UITableViewCell
。 对我的
UIViewController
实施
UITableViewDelegate
UITableViewDataSource
。 还实现所有需要为上述代表定义的方法,例如:
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath;
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath;
也将UITableView设置为编辑模式,
  [tableView setEditing:YES animated:YES];
当我单击“删除”按钮以将“表格视图”设置为“编辑”模式时,我可以看到\'-\'签名红色按钮,但是当我单击该按钮时看不到\“删除\”按钮,并且在单元格上滑动时也看不到。 我遍历了stackoverflow上的所有帖子,但是无法找到解决方案。 提前致谢。     

解决方法

        我认为您缺少tableView:editingStyleForRowAtIndexPath方法。尝试将以下代码添加到您的实现中。
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
    return UITableViewCellEditingStyleDelete;
}
    ,        这是我用来实现此目的的方法:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
    [myArray removeObjectAtIndex:indexPath.row];
    [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
    ,        请删除
[tableView setEditing:YES animated:YES];
并使用这种方法
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
    // Return YES if you want the specified item to be editable.
    return YES;
}
并执行删除按钮上的操作 -(void)tableView:(UITableView *)tableView commitEditingStyle:
(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
 //add action on delete button
}
    ,        此方法用于在滑动选定的TableViewCell时显示删除按钮。
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView 
       editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath {
}
滑动TableViewCell时,此方法将在点击删除按钮时执行操作
- (void)tableView:(UITableView *)tableView 
        commitEditingStyle:(UITableViewCellEditingStyle)editingStyle
        forRowAtIndexPath:(NSIndexPath *)indexPath {
}
删除表格视图中的行后,此方法将更新表格视图
- (void)tableView:(UITableView *)tableView 
                   didEndEditingRowAtIndexPath:(NSIndexPath *)indexPath {
}
    

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...