UITableView -headerViewForSection返回(null)

时间:2013-11-25 08:42:56

标签: ios objective-c uitableview

我有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? (因为根据similar question和文档“)

  

要使表格视图能够识别页眉或页脚视图,您需要注册它   您可以使用registerNib:forCellReuseIdentifier:或   registerClass:forCellReuseIdentifier:UITableView的方法。

3 个答案:

答案 0 :(得分:26)

方法1:

好的,经过一番反复试验,我终于解决了自己的困境 就像我做一个单元格一样,我做了headerView

对于一个单元格,我们会UITableViewCell并使用dequeueReusableCellWithIdentifier
而...
对于页眉/页脚,我们将UITableViewHeaderFooterView并使用dequeueReusableHeaderFooterViewWithIdentifier方法。

其余的几乎与细胞一样。

先决条件:

  1. 将标题高度设置为40
  2. 将部分数量设置为2或更多
  3. 将每个部分的行数设置为至少1
  4. iOS6 +( UITableViewHeaderFooterView不适用于iOS5及以下

  5. 第一种方法:

    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. 为类
    3. 创建了一个View接口nib文件
    4. 在xib中,选择了View&在它的身份检查器
      • 自定义类指定为CustomHeaderView
    5. 制作属性,合成并在xib中连接它们
      • @property (strong, nonatomic) IBOutlet UILabel *lblSomething;
      • @property (strong, nonatomic) IBOutlet UIButton *btnSomething;
    6. 修改了-viewForHeaderInSection:& -didSelectRowAtIndexPath: as:

      - (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);
      }
      

      PS:我知道这段代码没有任何重要意义,但这只是其他人的一个例子。

答案 1 :(得分:3)

我认为你的问题很容易解决:

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{    
UITableViewHeaderFooterView *myHeader = [[UITableViewHeaderFooterView 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;

}

基本上,您需要使用 UITableViewHeaderFooterView 类从 viewForHeaderInSection 回调中返回。之后,在表视图上调用 headerViewForSection 将返回有效的对象实例,而不是nil。

答案 2 :(得分:0)

您需要设置框架。

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{    
    UIView *myHeader = [[UIView alloc] init];
    myHeader.frame   = CGRectMake(0, 0, 100, 75); //ADD THIS AND SET YOUR FRAME
    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;
}