2

多くの質問を読み、解決策を試しましたが、それでも問題を解決できませんでしたtableview

スクロールした後、テーブルビューの行のデータが入れ替わり、場合によっては欠落していました。

これが私のコードです:

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

    BGMModifierCheckCell *cell = nil;
    cell = (BGMModifierCheckCell *)[tableView dequeueReusableCellWithIdentifier:modifierCheckCell];

    if (cell == nil) {

        NSArray* topLevelObjects = [[NSBundle mainBundle] loadNibNamed:modifierCheckCell owner:self options:nil];
        for (id currentObject in topLevelObjects) {
            if ([currentObject isKindOfClass:[UITableViewCell class]]) {
                cell = (BGMModifierCheckCell *)currentObject;
                break;
            }
        }


        cell.selectionStyle = UITableViewCellSelectionStyleNone;

        NSArray *optionIds = [[[arrayInsideDict objectAtIndex:indexPath.section] objectForKey:@"optnItem"] objectAtIndex:indexPath.row];

        BGMOptnCats *optnCat = [BGMOptnCats MR_findFirstByAttribute:@"iOptnCatId" withValue:[[arrayInsideDict objectAtIndex:indexPath.section] objectForKey:@"optnCatId"]];

        [optionIds enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {

            __block int optnTag = [obj intValue];

            BGMItemDayOptns *item = [BGMItemDayOptns MR_findFirstByAttribute:@"iItemDayOptnId" withValue:obj];

            [item.optns.optnLangs enumerateObjectsUsingBlock:^(id obj, BOOL *stop) {

                BGMOptnLangs *lang = (BGMOptnLangs *)obj;

                if ([lang.sLangCode isEqualToString:@"en"]) {

                    NSString *optn = [NSString stringWithFormat:@"%@", lang.sOptnName];

                    if ([optnCat.sOptnType isEqualToString:@"single"]) {

                        RadioButton *rb1                   = [[RadioButton alloc] initWithFrame:CGRectMake(0, 0, 200, 40)];
                        [rb1 setGroupID:indexPath.section AndID:optnTag AndTitle:optn];
                        rb1.delegate                    = self;

                        if (idx == 0) {

                            [cell.firstOption addSubview:rb1];

                        } else if (idx == 1) {

                            [cell.secondOption addSubview:rb1];

                        } else if (idx == 2) {

                            [cell.thirdOption addSubview:rb1];

                        }


                    } else if ([optnCat.sOptnType isEqualToString:@"multiple"]) {

                        SSCheckBoxView *checkBox = [[SSCheckBoxView alloc] initWithFrame:CGRectMake(0, 0, 200, 40) style:kSSCheckBoxViewStyleMono checked:NO];
                        checkBox.tag = optnTag;
                        [checkBox setStateChangedTarget:self selector:@selector(checkBoxViewChangedState:)];
                        [checkBox setText:@""];
                        [checkBox setText:optn];

                        if (idx == 0) {

                            [cell.firstOption addSubview:checkBox];

                        } else if (idx == 1) {

                            [cell.secondOption addSubview:checkBox];

                        } else if (idx == 2) {

                            [cell.thirdOption addSubview:checkBox];

                        }


                    }

                }

            }];

        }];

    }

    return cell;

}
4

2 に答える 2

1

問題は、細胞が再利用されていることです。そのため、スクロールすると行が入れ替わります。

if (cell == nil) の外側にセルの内容を設定します。

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

    BGMModifierCheckCell *セル = nil;
    cell = (BGMModifierCheckCell *)[tableView dequeueReusableCellWithIdentifier:modifierCheckCell];

    if (セル == nil) {

        NSArray* topLevelObjects = [[NSBundle mainBundle] loadNibNamed:modifierCheckCell owner:self options:nil];
        for (id currentObject in topLevelObjects) {
            if ([currentObject isKindOfClass:[UITableViewCell クラス]]) {
                セル = (BGMModifierCheckCell *)currentObject;
                壊す;
            }
        }
     }


        cell.selectionStyle = UITableViewCellSelectionStyleNone;

        NSArray *optionIds = [[[arrayInsideDict objectAtIndex:indexPath.section] objectForKey:@"optnItem"] objectAtIndex:indexPath.row];

        BGMOptnCats *optnCat = [BGMOptnCats MR_findFirstByAttribute:@"iOptnCatId" withValue:[[arrayInsideDict objectAtIndex:indexPath.section] objectForKey:@"optnCatId"]];

        [optionIds enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {

            __block int optnTag = [obj intValue];

            BGMItemDayOptns *item = [BGMItemDayOptns MR_findFirstByAttribute:@"iItemDayOptnId" withValue:obj];

            [item.optns.optnLangs enumerateObjectsUsingBlock:^(id obj, BOOL *stop) {

                BGMOptnLangs *lang = (BGMOptnLangs *)obj;

                if ([lang.sLangCode isEqualToString:@"en"]) {

                    NSString *optn = [NSString stringWithFormat:@"%@", lang.sOptnName];

                    if ([optnCat.sOptnType isEqualToString:@"single"]) {

                        RadioButton *rb1 = [[RadioButton alloc] initWithFrame:CGRectMake(0, 0, 200, 40)];
                        [rb1 setGroupID:indexPath.section AndID:optnTag AndTitle:optn];
                        rb1.delegate = 自己;

                        もし (idx == 0) {

                            [cell.firstOption addSubview:rb1];

                        } その他の場合 (idx == 1) {

                            [cell.secondOption addSubview:rb1];

                        } その他の場合 (idx == 2) {

                            [cell.thirdOption addSubview:rb1];

                        }


                    } そうでなければ ([optnCat.sOptnType isEqualToString:@"multiple"]) {

                        SSCheckBoxView *checkBox = [[SSCheckBoxView alloc] initWithFrame:CGRectMake(0, 0, 200, 40) style:kSSCheckBoxViewStyleMono checked:NO];
                        checkBox.tag = optnTag;
                        [checkBox setStateChangedTarget:self selector:@selector(checkBoxViewChangedState:)];
                        [checkBox setText:@""];
                        [checkBox setText:optn];

                        もし (idx == 0) {

                            [cell.firstOption addSubview:checkBox];

                        } その他の場合 (idx == 1) {

                            [cell.secondOption addSubview:checkBox];

                        } その他の場合 (idx == 2) {

                            [cell.thirdOption addSubview:checkBox];

                        }


                    }

                }

            }];

        }];

    セルを返します。

}
于 2013-09-13T04:48:06.863 に答える
0

CellForRowAtIndexpath が呼び出されるたびにサブビューが作成されるため、サブビューを削除する必要があるため、新しいサブビューを追加する前に前のものを削除します

for (UIView *view in cell.contentView.subviews) {
                    [view removeFromSuperview];
                }
于 2013-09-13T07:00:24.670 に答える