我正在寻找一种直接调用编辑方法的方法。
- (void)tableView:(UITableView *)theTableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
我有我所有的逻辑来动画操纵单元格,在这个方法中从我的模型数组中删除等等。当用户滑动、添加或重新排列时会调用它,但我想手动/直接调用它,因为后台线程会更改我的模型。
我已经像这样构建了一个 NSIndexPath:
NSIndexPath *path = [NSIndexPath indexPathForRow:i inSection:1];
我只是不知道如何调用类似的东西:
[self.tableview commitEditingStyle:UITableViewCellEditingStyleDelete forRowAtIndexPath:path];
我是否需要以另一种方式访问这种普通样式 UITableView 的方法?
谢谢:)