1

我试图覆盖第二个 tableHeaderView。但似乎它在方法heightForHeaderInSection中的高度似乎为0。无法解释,我是否必须将它放在iVar中,因为在viewForHeaderInSection中我可以毫无问题地设置视图。

 - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
if(section == 0)
    return @"Adding a new list";
else
    return @"Other lists";

}

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {

if(section == 0) {
    return tableView.tableHeaderView;
} else {
    UIView *view = [[[UIView alloc] initWithFrame:CGRectMake(10, 10, 100, 50)] autorelease];
    view.backgroundColor = [UIColor redColor];

    return view;
}

}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
if(section == 0)
    return tableView.tableHeaderView.frame.size.height;
else
    return 30;
}
4

1 回答 1

4

我认为您混淆了表格标题和每个部分的标题,它们是不同的。没有“第二个 tableHeaderView”,aUITableView有一个tableHeaderView,然后依赖于viewForHeaderInSectionheightForHeaderInSection方法为每个部分放置自定义标题视图,否则您只需titleForHeaderInSection在其中放置文本。

于 2010-03-15T22:58:43.993 回答