我NSNotifications
在一个UITableViewHeaderFooter
子类中实现,因为我想在本节之一中 section
按下时更改标题。在那里它是并且在它是. 我已经在观察者中记录了通知对象,并且我多次看到日志,因为部分位于 中,对我来说这还不错,因为我可以通过 indexPath.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];
}
}