3

テーブル ビューからの行の削除に問題があります。行の削除ボタンが押されたときに、以下のコードを使用しています。

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:control.tag-100 inSection:0];
[resultList removeObjectAtIndex:indexPath.row];
[resultView beginUpdates];
[resultView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
[resultView endUpdates];
//[resultView reloadData];

最初の行は正常に削除されましたが、インデックスが正しくありませんでした。したがって、最後の行を削除すると、インデックスが境界外の例外になります。

セル生成コードは次のとおりです。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"personalizeTableCell";

    PersonalizeCell *cell = (PersonalizeCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil)
        cell = [[PersonalizeCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];        
    cell.title.text = @"text";
    cell.rateView.tag = indexPath.row + 100;
    return cell;
}

どこが間違っていますか?

アップデート:

    for (NSInteger j = 0; j < [venuesTableView numberOfSections]; ++j)
    {
        for (NSInteger i = 0; i < [venuesTableView numberOfRowsInSection:j]; ++i)
        {
           PersonalizeCell* cell = (PersonalizeCell*)[venuesTableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:j]];
           cell.rateView.tag = 100 + i;
        }
    }

私の問題を解決しました。Nenad M に感謝します。

4

1 に答える 1

11

[NSIndexPath indexPathForRow:control.tag-100 inSection:0];リターンが正しいインデックスパスであると仮定します。removeObjectAtIndex呼び出しをbegin-/end-updates「ブラケット」内に移動してみましたか?:

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:control.tag-100 inSection:0];
[resultView beginUpdates];
[resultList removeObjectAtIndex:indexPath.row];
[resultView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
[resultView endUpdates];

アップデート:

cell.rateView.tagあなたが最初のセルを削除した後、明らかにあなたは間違っています。したがって、すべての削除(つまり、すべて)の後で、残りのテーブルビューセルを繰り返して、適切なタグ値( )removeObjectAtIndex...を再割り当てする必要があります。cell.rateView.tag = indexPath.row + 100そうしない[NSIndexPath indexPathForRow:control.tag-100 inSection:0];と、間違ったindexPathが返されるため、範囲外エラーが発生します。

タグ値の再割り当て:

テーブル全体をリロードする必要はありません。残りのセルをループして、次の後にタグ値を再割り当てします[resultView endUpdates];

NSMutableArray *cells = [[NSMutableArray alloc] init];
for (NSInteger j = 0; j < [tableView numberOfSections]; ++j)
{
    for (NSInteger i = 0; i < [tableView numberOfRowsInSection:j]; ++i)
    {
        [cells addObject:[tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:i inSection:j]]];
    }
}

今すぐ行います:

for (PersonalizeCell* cell in cells)
{
    cell.rateView.tag = // new calculated tag
}

(または、最初のコードスニペットの内部ループでも直接再割り当てを行います。)


プロセス全体の実際に典型的なコードを次に示します。例の表から2行です。

facebookRowsExpandedは、次のものが必要なクラス変数であることに注意してください。

if ( [theCommand isEqualToString:@"fbexpander"] )
{
NSLog(@"expander button......");
[tableView deselectRowAtIndexPath:indexPath animated:NO];

NSArray *deleteIndexPaths;
NSArray *insertIndexPaths;

facebookRowsExpanded = !facebookRowsExpanded;
// you must do that BEFORE, not AFTER the animation:

if ( !facebookRowsExpanded ) // ie, it was just true, is now false
    {
    deleteIndexPaths = [NSArray arrayWithObjects:
            [NSIndexPath indexPathForRow:2 inSection:0],
            [NSIndexPath indexPathForRow:3 inSection:0],
             nil];
    [tableView beginUpdates];
    [tableView
        deleteRowsAtIndexPaths:deleteIndexPaths
        withRowAnimation: UITableViewRowAnimationMiddle];
    [tableView endUpdates];
    }
else
    {
    insertIndexPaths = [NSArray arrayWithObjects:
            [NSIndexPath indexPathForRow:2 inSection:0],
            [NSIndexPath indexPathForRow:3 inSection:0],
             nil];
    [tableView beginUpdates];
    [tableView
        insertRowsAtIndexPaths:insertIndexPaths
        withRowAnimation: UITableViewRowAnimationMiddle];
    [tableView endUpdates];
    }

// DO NOT do this at the end: [_superTableView reloadData];
return;
}

注:numberOfRowsInSectionのコードはfacebookRowsExpandedを使用する必要があります

(「facebookRowsExpandedが7を返す場合、それ以外の場合は5を返す」のようになります)

注:cellForRowAtIndexPathのコードでは、facebookRowsExpandedを使用する必要があります。

(展開されているかどうかに応じて、正しい行を返す必要があります。)

于 2013-02-07T10:27:44.537 に答える