在使用以下内容进入编辑模式后,我基本上没有得到回复:
[self.tableView setEditing:NO animated:YES];
我设置了commitEdittingstyle:
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath;
要看到我会得到回复,但在触摸删除按钮后,我没有得到任何回复。
任何帮助?
答案 0 :(得分:0)
检查此
[self.tableView setEditing:YES animated:YES];
if(editingStyle == UITableViewCellEditingStyleDelete){
// Delete your data
// Update your table view
}
}