我有兩個數組。每個數組獲取一個部分。當用戶滑動該行並選擇刪除時,它必須刪除右側部分中的相應行。如何更改我的代碼以在正確的部分刪除它。 這是我的代碼到目前爲止。如何在特定區域中刷卡刪除一行
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
if (editingStyle == UITableViewCellEditingStyleDelete) {
//remove the deleted object from your data source.
//If you're data source is an NSMutableArray, do this
if (self.numberOfSections == 1)
{
[self.playerNames removeObjectAtIndex:indexPath.row];
}
else
{
//code here needs to determine which section needs to be deleted
}
[self.tableView reloadData];
}
}
再次什麼是你的問題? – Peres 2013-03-20 07:58:24