0

このセクションの いずれかを押したときにタイトルを変更したいので、サブクラスNSNotificationsで実装しています。通知オブジェクトをオブザーバーに記録したところ、セクションが にあるためログが何度も表示されます。indexPath.section を渡して管理できるので悪くはないのですが、正常ですか? より多くのセクションがある場合、問題が発生する可能性はありますか? これを処理する方法はありますか?UITableViewHeaderFootersectionrowUITableViewHeaderFooterobservertableViewControllerpostnotificationtableview

他の質問で Joiningss に言ったように、tableView でスクロールすると、セクションのタイトルにも問題があり、タイトルが変更され、以前のタイトルが表示されます (再利用性の問題..)

ここに私のコードがあります(コードを許してください、これは単なるテストです)

最初に私のカスタム HeaderFooterView:

- (id)initWithReuseIdentifier:(NSString *)reuseIdentifier {
    self = [super initWithReuseIdentifier:reuseIdentifier];
    if (self) {
        self.contentView.backgroundColor = [UIColor blackColor];
        textLabel = [[UILabel alloc] initWithFrame:CGRectMake(5, 5, 200, 14)];
        [textLabel setTextColor:[UIColor whiteColor]];
        [textLabel setFont:[UIFont systemFontOfSize:14]];
        [textLabel setBackgroundColor:[UIColor clearColor]];

        [self.contentView addSubview:textLabel];
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(somethingHappens:) name:@"notificationName" object:nil];


    }
    return self;
}

-(void) somethingHappens:(NSNotification*) notification
{
    NSLog(@"Notification %@", notification);
    NSDictionary *notificationDic = notification.object;
    NSString *title = [notificationDic valueForKey:@"title"];
    NSIndexPath *indexPath = [notificationDic objectForKey:@"index"];
    [self configureHeaderSectionWithString:title andSection:indexPath.section];
}
-(void)configureHeaderSectionWithString:(NSString *) text andSection:(NSInteger)section
{
    if(self.section == section)
    textLabel.text = text;
}

ここで、この実装の TableView メソッド:

#pragma mark - Custom getter

- (UITableView *)tableView {
    //custom init of the tableview
    if (!tableView) {
        // regular table view
        tableView = [[UITableView alloc] initWithFrame:UIEdgeInsetsInsetRect(self.view.bounds, tableViewInsets) style:UITableViewStylePlain];
        tableView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
        tableView.delegate = self;
        tableView.dataSource = self;
        tableView.backgroundColor = [UIColor blackColor];
        [tableView registerClass:[WPSectionHeaderView class] forHeaderFooterViewReuseIdentifier:SectionHeaderViewIdentifier];

        return tableView;
    }
    return tableView;
}


#pragma mark - TableView Delegate

-(UIView*)tableView:(UITableView*)tableView viewForHeaderInSection:(NSInteger)section {

     WPSectionHeaderView *sectionHeaderView = [self.tableView dequeueReusableHeaderFooterViewWithIdentifier:SectionHeaderViewIdentifier];

    sectionHeaderView.section = section;
    sectionHeaderView.delegate = self;
    [sectionHeaderView configureHeaderSectionWithString:[sectionsArray objectAtIndex:section] andSection:section];

    return sectionHeaderView;
}
- (void)tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    if(indexPath.section == 2){
        NSString *title = [categoriesArray objectAtIndex:indexPath.row];
        NSDictionary *dic = [NSDictionary dictionaryWithObjects:@[indexPath,title] forKeys:@[@"index", @"title"]];

        [[NSNotificationCenter defaultCenter] postNotificationName:@"notificationName" object:dic];

    }
}
4

1 に答える 1

1

更新: 申し訳ありませんが、以前のコードにはセクションの再利用に関するいくつかのバグが含まれていました。新しいコードを使用してください:

1. lastNotificationTitle と lastNotificationSection を削除し、NSMutableDictionary * notificationTitlesDic を追加します。

2.chang somethingHappens: および configureHeaderSectionWithString: コードを使用:

 -(void) somethingHappens:(NSNotification*) notification
    {
        NSLog(@"Notification %@", notification);
        NSDictionary *notificationDic = notification.object;
        NSString *title = [notificationDic valueForKey:@"title"];
        NSIndexPath *indexPath = [notificationDic objectForKey:@"index"];
        [self.notificationTitlesDic setObject:title forKey:[NSString  stringWithFormat:@"%d",indexPath.section]];
        if(self.section == indexPath.section){
            textLabel.text = title;
        } 
    }


 -(void)configureHeaderSectionWithString:(NSString *) text andSection:(NSInteger)section
    {
        NSString * targetKey = [NSString stringWithFormat:@"%d",section];
        for (NSString * key in self.notificationTitlesDic) {
            if([targetKey isEqualToString:key]){
                textLabel.text = [self.notificationTitlesDic valueForKey:key];
                return;
            }
        }
        textLabel.text = text;
    }

私のテストレスコードでテストしてください:]

于 2013-11-15T01:58:54.407 に答える