UITableView headerViewForSection 返回 (空值)

本文详细介绍了如何在UITableView中使用自定义headerView和footerView,包括使用注册Nib和自定义子类的方法,以及如何在didSelectRowAtIndexPath方法中访问和操作headerView。

我有 UITableView 与 2 个部分。每个都有它自己的 headerView 。
我已经创建了一个自定义 headerView 通过 -viewForHeaderInSection: 方法。
后来,我计划有点修改它,所以我需要使用 viewForHeader 方法,但不能访问 headerView 和它有 subViews 。

作为一个简单的例子,我在试着 NSLog viewForHeader 中的对象 -didSelectRowAtIndexPath: 但我得到 (null)的结果。

示例代码:

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    return 75;
}

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{    
    UIView *myHeader = [[UIView alloc] init];
    switch (section) {
        case 0:
            [myHeader setBackgroundColor:[UIColor greenColor]];
            break;
        case 1:
            [myHeader setBackgroundColor:[UIColor redColor]];
            break;
        default:
            break;
    }

    UILabel *myLabel = [[UILabel alloc] init];
    [myLabel setFrame:CGRectMake(10, 0, 100, 30)];
    [myLabel setTag:101];
    [myLabel setBackgroundColor:[UIColor clearColor]];
    [myLabel setText:[NSString stringWithFormat:@"Section: %d",section]];

    [myHeader addSubview:myLabel];    
    return myHeader;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewHeaderFooterView *testView = [self.tableView headerViewForSection:indexPath.section];
    NSLog(@"%@",testView);  //displays (null)
}

需要创建自定义 UIView 作为 xib headerView 吗?(因为每一个类似的问题和文档")

To make the table view aware of your header or footer view, you need to register it.   
You do this using the registerNib:forCellReuseIdentifier: or  
registerClass:forCellReuseIdentifier: method of UITableView.
解决方法 1:

方法 1:

好的在一些试验和错误后我终于解决我自己的困境。
我做了 headerView 只会一样一个单元格。

为一个单元格,我们会采取 UITableViewCell 和使用dequeueReusableCellWithIdentifier
虽然......
为的页眉页脚,我们将采取 UITableViewHeaderFooterView ,并使用 dequeueReusableHeaderFooterViewWithIdentifier 方法。

剩下的就很多相同的概念作为一个单元格。

先决条件:

  1. 设置的页眉的高度到 40
  2. 设置的节数为 2 或更多
  3. 每节要至少 1 个设置的行数
  4. iOS6 + ( UITableViewHeaderFooterView 与 iOS5 和下面不会工作)

第一种方法:

创建和使用默认的 UITableViewHeaderFooterView 内 -viewForHeaderInSection: 方法:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    static NSString *HeaderIdentifier = @"header";

    UITableViewHeaderFooterView *myHeader = [tableView dequeueReusableHeaderFooterViewWithIdentifier:HeaderIdentifier];
    if(!myHeader) {
        myHeader = [[UITableViewHeaderFooterView alloc] initWithReuseIdentifier:HeaderIdentifier];
    }

    UIButton *btnUp = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    [btnUp setTag:101];
    [btnUp setTitle:@"-" forState:UIControlStateNormal];
    [btnUp setFrame:CGRectMake(tableView.frame.size.width - 35, 5, 30, 30)];
    [myHeader addSubview:btnUp];

    [myHeader.textLabel setText:[NSString stringWithFormat:@"Section: %d",section]];

    [myHeader setFrame:CGRectMake(0, 0, tableView.frame.size.width, 50)];
    return myHeader;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewHeaderFooterView *theHeaderView = [tableView headerViewForSection:indexPath.section];
    NSLog(@"%@",theHeaderView); // -- great! ... not (null) anymore

    UIButton *theButton = (UIButton *)[theHeaderView viewWithTag:101];
    [theButton setTitle:@"+" forState:UIControlStateNormal];
}

第二种方法:

使用自定义 UITableViewHeaderFooterView 子类:

  1. 创建 UITableViewHeaderFooterView 子类并将它命名为CustomHeaderView
  2. 创建了一个视图界面 nib 文件的类
  3. Xib,在选定视图 & 在中它是身份检查器
    • 指定的自定义类CustomHeaderView
  4. 作的性质、 合成和连接他们的 xib
    • @property (strong, nonatomic) IBOutlet UILabel *lblSomething;
    • @property (strong, nonatomic) IBOutlet UIButton *btnSomething;

修改 -viewForHeaderInSection: & -didSelectRowAtIndexPath: 作为:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    static NSString *HeaderIdentifier = @"header";

    CustomHeaderView *myHeader = [tableView dequeueReusableHeaderFooterViewWithIdentifier:HeaderIdentifier];
    if(!myHeader) {
    //    [tableView registerClass:[CustomHeaderView class] forHeaderFooterViewReuseIdentifier:HeaderIdentifier];
        myHeader = [[[NSBundle mainBundle] loadNibNamed:@"CustomHeaderView"
                                                  owner:self
                                                options:nil] objectAtIndex:0];
    }

    [myHeader.btnSomething setTitle:@"-" forState:UIControlStateNormal];
    [myHeader.lblSomething setText:[NSString stringWithFormat:@"Section: %d",section]];

    return myHeader;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    CustomHeaderView *theHeaderView = (CustomHeaderView*)[tableView headerViewForSection:indexPath.section];
    NSLog(@"%@",theHeaderView);

    [theHeaderView.lblSomething setAlpha:theHeaderView.lblSomething.alpha-0.1];
    [theHeaderView.btnSomething setTitle:@"+" forState:UIControlStateNormal];
}

PS: 与问题 UITableViewHeaderFooterView 是它是 iOS6 + 如果,任何原因,您的标头/必须是 UIView ,然后看看下一个方法


方法 2:

使用一个简单的 UIView :

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    UIView *vwHeader = [[UIView alloc] init];
    [vwHeader setTag:200 + section]; //[1] first method

    switch (section) {
        case 0:
            [vwHeader setBackgroundColor:[UIColor greenColor]];
            break;
        case 1:
            [vwHeader setBackgroundColor:[UIColor redColor]];
            break;
        default:
            break;
    }

    UILabel *lblTitle = [[UILabel alloc] init];
    [lblTitle setFrame:CGRectMake(10, 0, 100, 30)];
    [lblTitle setTag:100 + section]; //[2] alternative method
    [lblTitle setBackgroundColor:[UIColor clearColor]];
    [lblTitle setText:[NSString stringWithFormat:@"Section: %d",section]];

    [vwHeader addSubview:lblTitle];
    return vwHeader;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UIView *vwTest = [self.tableView viewWithTag:200 + indexPath.section]; //[1]
    NSLog(@"[1] : %@",vwTest);

    //or

    UILabel *lblTest = (UILabel *)[self.tableView viewWithTag:100 + indexPath.section]; //[2]
    NSLog(@"%@",lblTest.text);
    UIView *vwTestForSuperview = lblTest.superview;
    NSLog(@"[2] : %@",vwTestForSuperview);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值