0

最近アプリの開発を始めたので、無知ですみません。tableView があり、テーブル ビューのセルをクリックすると、そのすぐ下に新しい行を挿入したいと考えています。これは現在、私のコードで機能します。ただし、セルをもう一度クリックすると、挿入された行が削除されることも必要です。これにより、配列の範囲外であることを示す NSRangeException が返されます。

これはおそらく私のtableViewデリゲート/データメソッドに関係していると考えたので、それぞれにブレークポイントを設定しました。ブレークポイントを有効にすると、セルが完全に削除されます。ただし、ブレークポイントを無効にしてアプリケーションを単独で実行すると、クラッシュします。ブレークポイントがこれにどのように影響している可能性がありますか?

関連するコードは次のとおりです。

- (NSInteger) numberOfSectionsInTableView:(UITableView *)songTableView{
    return 1;
}

- (NSInteger)tableView:(UITableView *)songTableView
 numberOfRowsInSection:(NSInteger)section{
    bool debug = false;

    if (debug) NSLog(@"--TableView: rankings");
    if (expandedRow == -1) 
        return [self.songs count];
    else //one row is expanded, so there is +1
        return ([self.songs count]+1);

}

- (UITableViewCell *)tableView:(UITableView *)songTableView
         cellForRowAtIndexPath:(NSIndexPath *)indexPath{

        bool debug = false;
        if (debug) NSLog(@"--tableView: tableView");

        NSUInteger row = [indexPath row];
        if (row == expandedRow){ //the expanded row, return the custom cell
            UITableViewCell *temp = [[UITableViewCell alloc] 
                                     initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"test"];
            return temp;
        }
        UITableViewCell *cell = [tableViewCells objectAtIndex:row];
        return cell;
    } 
}

- (NSString *)tableView:(UITableView *)songTableView
titleForHeaderInSection:(NSInteger)section{
        //todo: call refresh title
        return @"The Fresh List";
}

- (CGFloat)tableView:(UITableView *)songTableView
heightForRowAtIndexPath:(NSIndexPath *)indexPath{
        return 44.0; //same as SongCell.xib

}


- (void)tableView: (UITableView *)songTableView 
didSelectRowAtIndexPath: (NSIndexPath *)indexPath {
    bool debug = true;
    //todo: if the user selects expanded cell, doesn't do anything
        SongCell *cell = (SongCell *)[songTableView cellForRowAtIndexPath:indexPath];
        if (cell->expanded == NO){
            //change cell image
            cell.bgImage.image = [UIImage imageNamed:@"tablecellbg_click.png"];
            cell->expanded = YES;

            //add new cell below

            NSInteger atRow = [indexPath row] + 1;
            NSIndexPath *insertAt = [NSIndexPath indexPathForRow:atRow inSection:0];
            NSArray *rowArray = [[NSArray alloc] initWithObjects:insertAt, nil];

            if (debug) NSLog(@"Expanded row: %d", atRow);
            expandedRow = atRow;

            [tableView insertRowsAtIndexPaths:rowArray withRowAnimation:UITableViewRowAnimationTop];

        }else { //cell is already open, so close it
            //change cell image
            cell.bgImage.image = [UIImage imageNamed:@"tablecellbg.png"];
            cell->expanded = NO;

            NSIndexPath *removeAt = [NSIndexPath indexPathForRow:expandedRow inSection:0];
            NSArray *rowArray = [[NSArray alloc] initWithObjects:removeAt, nil];
            if(debug) NSLog(@"--about to delete row: %d", expandedRow);

            expandedRow = -1;
            [tableView deleteRowsAtIndexPaths:rowArray withRowAnimation:UITableViewRowAnimationTop];

            //remove expaned cell below
        }

}
4

3 に答える 3

1

これは推測にすぎませんが、テーブル構造を変更するコードを呼び出しでラップすることをお勧めします。

[tableView beginUpdates];
[tableView endUpdates]; 
于 2012-04-19T01:33:59.323 に答える
0

私は自分自身の質問に答えるのが嫌いですが、私はそれを理解しました.

オブジェクトの配列から tableView をロードしていました。セルを追加したとき、テーブルには 31 個のオブジェクトが保持されていましたが、その配列にはまだ 30 個のオブジェクトしか保持されていませんでした。numberOfRowsInSection メソッドを正しく返していました。

これが私が行った変更です。次の場合は、余分な else に注意してください。

NSUInteger row = [indexPath row];
        if (row == expandedRow){ //the expanded row, return the custom cell
            if(debug) NSLog(@"row == expandedRow");
            UITableViewCell *temp = [[UITableViewCell alloc] 
                                     initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"test"];
            return temp;
        }
        else if (expandedRow != -1 && row > expandedRow)
            row--;

オブジェクトの配列と UITableViewCells は 1 対 1 で一致すると想定されていました。展開された行の後、indexPath の行は 1 ずれているためです。これは、この問題に対する私の簡単な修正ですが、これを解決するためのより良い方法があると確信しています。

于 2012-04-19T08:50:41.493 に答える
0

これは null を返すに違いありません: [NSIndexPath indexPathForRow:expandedRow inSection:0]; もしそうなら、それは吹く...

h番目

于 2012-04-18T23:46:19.150 に答える