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