1

我为滑动删除处理实现了这 3 个委托方法,但没有发生任何事情,也没有调用这些方法。

//returns UITableViewCellEditingStyleDelete
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath;

//removes deleted object from my tabledata array
- (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath;

//checks if data actually can be deleted (all set to yes currently)
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath;

我到底错过了什么?我整天在我的表格单元格上刷卡,但没有任何反应。

4

1 回答 1

0

确保您已将DataSourceDelegate连接到您的视图控制器,并确保在使用完成后刷新表格[self.tableView reloadData];

于 2013-12-13T14:34:06.027 回答