UITableView headerViewForSection 返回 (空值)

我有UITableView2 个部分。每个都有它自己的 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)
}
解决方法 1:
方法 1:
好在一些试验和错误后我终于解决我自己的困境。我做了 `headerView` 只会一样一个单元格。

为一个单元格,我们会采取 `UITableViewCell `和使用`dequeueReusableCellWithIdentifier`
虽然......
为的页眉页脚,我们将采取 `UITableViewHeaderFooterView `,并使用 `dequeueReusableHeaderFooterViewWithIdentifier `方法。
剩下的就很多相同的概念作为一个单元格。

先决条件:
- 设置的页眉的高度到 40
- 设置的节数为 2 或更多
- 每节要至少 1 个设置的行数
`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 ,然后看看下一个方法

方法 二代码:

使用一个简单的 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);
}

文章原地址

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,236评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,867评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,715评论 0 340
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,899评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,895评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,733评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,085评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,722评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,025评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,696评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,816评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,447评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,057评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,009评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,254评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,204评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,561评论 2 343

推荐阅读更多精彩内容

  • 标签: 知识管理 1.你的知识需要管理 这本书是一本知识管理的书籍,整本书以对知识的 学习——保存——分享——使用...
    烽烟乱阅读 764评论 4 10
  • 昨天早上,读《亲爱的安德烈》。又读到那篇“我为什么要叫你用功读书”,曾在各界媒体的笔下无数次的“巧遇”它。我看这题...
    萤火虫8848阅读 272评论 0 4
  • 周六,本来应该惬意的一天,可是一顿中午饭把我吃进了苦海。肚子难受了一下午。下午时嗓子又突然不舒服,满满的不开心。充...
    与城阅读 184评论 0 0