147

我想UITableView为每个部分自定义标题。到目前为止,我已经实施

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

这种UITabelViewDelegate方法。我想要做的是获取每个部分的当前标题并添加UILabel为子视图。

到目前为止,我无法做到这一点。因为,我找不到任何东西来获取默认的节标题。第一个问题,有没有办法获得默认的节标题

如果不可能,我需要创建一个容器视图,UIView但这次我需要设置默认背景颜色、阴影颜色等。因为,如果你仔细查看部分的标题,它已经被自定义了。

如何获取每个节标题的这些默认值?

4

24 回答 24

293

你可以试试这个:

 -(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.frame.size.width, 18)];
    /* Create custom view to display section header... */
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(10, 5, tableView.frame.size.width, 18)];
    [label setFont:[UIFont boldSystemFontOfSize:12]];
     NSString *string =[list objectAtIndex:section];
    /* Section header is in 0th index... */
    [label setText:string];
    [view addSubview:label];
    [view setBackgroundColor:[UIColor colorWithRed:166/255.0 green:177/255.0 blue:186/255.0 alpha:1.0]]; //your background color...
    return view;
}
于 2013-03-25T09:31:10.190 回答
45

选择的答案使用tableView :viewForHeaderInSection:是正确的。

只是在这里分享一个提示。

如果您使用的是故事板/xib,那么您可以创建另一个原型单元并将其用于您的“部分单元”。配置标题的代码类似于您为行单元格配置的代码。

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

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:HeaderCellIdentifier];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:HeaderCellIdentifier];
    }

    // Configure the cell title etc
    [self configureHeaderCell:cell inSection:section];

    return cell;
}
于 2015-05-05T06:38:33.437 回答
33

Lochana Tejas的 Swift 版本回答:

override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    let view = UIView(frame: CGRectMake(0, 0, tableView.frame.size.width, 18))
    let label = UILabel(frame: CGRectMake(10, 5, tableView.frame.size.width, 18))
    label.font = UIFont.systemFontOfSize(14)
    label.text = list.objectAtIndex(indexPath.row) as! String
    view.addSubview(label)
    view.backgroundColor = UIColor.grayColor() // Set your background color

    return view
}
于 2016-01-10T16:28:02.740 回答
17

如果您使用默认标题视图,则只能更改其上的文本

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section

对于斯威夫特:

override func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {

如果您想自定义视图,您需要自己创建一个新视图。

于 2013-03-25T09:46:21.530 回答
10

为什么不使用UITableViewHeaderFooterView

于 2013-09-28T15:44:21.823 回答
8

如果 headerInSection 没有显示,可以试试这个。

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

这将返回给定部分的标题的高度。

于 2015-12-17T02:57:15.137 回答
6

Swift 3 版本的 lochana 和 estemendoza 答案:

override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {

    let view = UIView(frame: CGRect(x:0, y:0, width:tableView.frame.size.width, height:18))
    let label = UILabel(frame: CGRect(x:10, y:5, width:tableView.frame.size.width, height:18))
    label.font = UIFont.systemFont(ofSize: 14)
    label.text = "This is a test";
    view.addSubview(label);
    view.backgroundColor = UIColor.gray;
    return view

}

此外,请注意,您还必须实施:

override func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
    return 100;
}
于 2017-06-26T18:26:17.030 回答
6

其他答案在重新创建默认标题视图方面做得很好,但实际上并没有回答您的主要问题:

有没有办法获得默认的节标题?

有一种方法 - 只需tableView:willDisplayHeaderView:forSection:在您的委托中实施。默认的标题视图将被传递到第二个参数中,从那里您可以将其转换为 a UITableViewHeaderFooterView,然后根据需要添加/更改子视图。

对象-C

- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section
{
    UITableViewHeaderFooterView *headerView = (UITableViewHeaderFooterView *)view;

    // Do whatever with the header view... e.g.
    // headerView.textLabel.textColor = [UIColor whiteColor]
}

迅速

override func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int)
{
    let headerView = view as! UITableViewHeaderFooterView

    // Do whatever with the header view... e.g.
    // headerView.textLabel?.textColor = UIColor.white
}
于 2017-06-28T22:26:25.790 回答
5

这是可能的最简单的解决方案。以下代码可直接用于创建自定义节标题。

 -(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    SectionHeaderTableViewCell *headerView = [tableView dequeueReusableCellWithIdentifier:@"sectionHeader"];

    //For creating a drop menu of rows from the section
    //==THIS IS JUST AN EXAMPLE. YOU CAN REMOVE THIS IF-ELSE.==
    if (![self.sectionCollapsedArray[section] boolValue])
    {
        headerView.imageView.image = [UIImage imageNamed:@"up_icon"];
    }
    else
    {
        headerView.imageView.image = [UIImage imageNamed:@"drop_icon"];
    }

    //For button action inside the custom cell
    headerView.dropButton.tag = section;
    [headerView.dropButton addTarget:self action:@selector(sectionTapped:) forControlEvents:UIControlEventTouchUpInside];

    //For removing long touch gestures.
    for (UIGestureRecognizer *recognizer in headerView.contentView.gestureRecognizers)
    {
        [headerView.contentView removeGestureRecognizer:recognizer];
        [headerView removeGestureRecognizer:recognizer];
    }

    return headerView.contentView;
}

注意:SectionHeaderTableViewCell 是在 Storyboard 中创建的自定义 UITableViewCell。

于 2015-06-24T15:05:13.770 回答
5

尝试这个......

override func tableView(tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) 
{
    // Background view is at index 0, content view at index 1
    if let bgView = view.subviews[0] as? UIView
    {
        // do your stuff
    }

    view.layer.borderColor = UIColor.magentaColor().CGColor
    view.layer.borderWidth = 1
}
于 2015-07-09T13:43:11.997 回答
4
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    //put your values, this is part of my code
    UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, 30.0f)];
    [view setBackgroundColor:[UIColor redColor]];
    UILabel *lbl = [[UILabel alloc] initWithFrame:CGRectMake(20, 5, 150, 20)];
    [lbl setFont:[UIFont systemFontOfSize:18]];
    [lbl setTextColor:[UIColor blueColor]];
    [view addSubview:lbl];

    [lbl setText:[NSString stringWithFormat:@"Section: %ld",(long)section]];

    return view;
}
于 2015-03-18T13:19:11.043 回答
4

完整的 2019 示例复制和粘贴

首先在故事板上设置“分组”:它必须在初始化时发生,你不能在以后真正设置它,所以在故事板上更容易记住:

在此处输入图像描述

下一个,

由于 Apple 错误,必须实现heightForHeaderInSection 。

func tableView(_ tableView: UITableView,
                   heightForHeaderInSection section: Int) -> CGFloat {
    return CGFloat(70.0)
}

仍然存在一个 Apple 错误 - 十年了 - 如果您没有heightForHeaderInSection电话,它根本不会显示第一个标题(即索引 0)。

所以,tableView.sectionHeaderHeight = 70根本行不通,它坏了

设置框架没有任何效果:

viewForHeaderInSection只需创建一个 UIView() 。

如果您UIView(frame ...)只是将视图的大小设置为由表确定,那么它是没有意义的/什么都做不了。

所以第一行将viewForHeaderInSection是简单let view = UIView()的,这就是你返回的视图。

func tableView(_ tableView: UITableView,
                       viewForHeaderInSection section: Int) -> UIView? {
    let view = UIView()
    
    let l = UILabel()
    view.addSubview(l)
    l.bindEdgesToSuperview()
    l.backgroundColor = .systemOrange
    l.font = UIFont.systemFont(ofSize: 15)
    l.textColor = .yourClientsFavoriteColor
    
    switch section {
    case 0:
        l.text =  "First section on screen"
    case 1:
        l.text =  "Here's the second section"
    default:
        l.text =  ""
    }
    
    return view
}

就是这样 - 其他任何事情都是浪费时间。

另一个“挑剔”的苹果问题。


上面使用的便利扩展是:

extension UIView {
    
    // incredibly useful:
    
    func bindEdgesToSuperview() {
        
        guard let s = superview else {
            preconditionFailure("`superview` nil in bindEdgesToSuperview")
        }
        
        translatesAutoresizingMaskIntoConstraints = false
        leadingAnchor.constraint(equalTo: s.leadingAnchor).isActive = true
        trailingAnchor.constraint(equalTo: s.trailingAnchor).isActive = true
        topAnchor.constraint(equalTo: s.topAnchor).isActive = true
        bottomAnchor.constraint(equalTo: s.bottomAnchor).isActive = true
    }
}
于 2019-10-20T19:43:28.587 回答
2

如果我是你,我会创建一个返回 UIView 的方法,给定一个 NSString 来包含。例如

+ (UIView *) sectionViewWithTitle:(NSString *)title;

在这个方法的实现中创建一个 UIView,添加一个带有你想要设置的属性的 UILabel,当然也将它的标题设置为给定的。

于 2013-03-25T09:32:01.377 回答
2

@samwize 在 Swift 中的解决方案(所以支持他!)。出色的页眉/页脚部分也使用相同的回收机制:

func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    let settingsHeaderSectionCell:SettingsHeaderSectionCell = self.dequeueReusableCell(withIdentifier: "SettingsHeaderSectionCell") as! SettingsHeaderSectionCell

    return settingsHeaderSectionCell
}
于 2017-03-03T10:31:57.620 回答
2
- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section
{
    if([view isKindOfClass:[UITableViewHeaderFooterView class]]){

        UITableViewHeaderFooterView *headerView = view;

        [[headerView textLabel] setTextColor:[UIColor colorWithHexString:@"666666"]];
        [[headerView textLabel] setFont:[UIFont fontWithName:@"fontname" size:10]];
    }
}

如果要更改节标题中 textLabel 的字体,则要在 willDisplayHeaderView 中进行。要设置文本,您可以在 viewForHeaderInSection 或 titleForHeaderInSection 中进行。祝你好运!

于 2017-09-22T22:04:40.980 回答
1

快速 4.2

override func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
    guard let header = view as? UITableViewHeaderFooterView else { return }

    header.textLabel?.textAlignment = .center // for all sections

    switch section {
    case 1:  //only section No.1
        header.textLabel?.textColor = .black
    case 3:  //only section No.3
        header.textLabel?.textColor = .red
    default: //
        header.textLabel?.textColor = .yellow
    }
}
于 2018-11-14T17:22:54.963 回答
1

调用此委托方法

-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{

return @"Some Title";
}

这将有机会自动添加带有动态标题的默认标题。

您可以使用可重用和可自定义的页眉/页脚。

https://github.com/sourov2008/UITableViewCustomHeaderFooterSection

于 2017-10-27T19:00:36.953 回答
1

神奇地快速添加表格视图标题

最近我试过这个。

我在整个 UITableView 中只需要一个标题。

就像我想要在 TableView 顶部的 UIImageView 一样。所以我在 UITableViewCell 上添加了一个 UIImageView 并自动将它添加为 tableViewHeader。现在我将 ImageView 连接到 ViewController 并添加了 Image。

我很困惑,因为我第一次做这样的事情。因此,为了消除我的困惑,打开 MainStoryBoard 的 xml 格式,发现 Image View 被添加为标题。

它对我有用。感谢 xCode 和 swift。

于 2015-11-27T11:28:09.867 回答
0

除了titleForHeaderInSection,您可以简单地更改页眉、页脚的视图。在此处查看我的评论:更改 UITable 部分背景颜色而不丢失部分标题

于 2015-03-13T22:46:12.777 回答
0

回到最初的问题(4 年后),而不是重建您自己的部分标题,iOS 可以在构建默认标题后立即调用您(使用 willDisplayHeaderView:forSection:)。例如,我想在节标题的右边缘添加一个图形按钮:

- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section {
    UITableViewHeaderFooterView * header = (UITableViewHeaderFooterView *) view;
    if (header.contentView.subviews.count >  0) return; //in case of reuse
    CGFloat rightEdge = CGRectGetMaxX(header.contentView.bounds);
    UIButton * button = [[UIButton alloc] initWithFrame:CGRectMake(rightEdge - 44, 0, 44, CGRectGetMaxY(header.contentView.bounds))];
    [button setBackgroundImage:[UIImage imageNamed:@"graphIcon"] forState:UIControlStateNormal];
    [button addTarget:self action:@selector(graphButtonPressed:) forControlEvents:UIControlEventTouchUpInside];
    [view addSubview:button];
}
于 2017-05-08T16:06:16.037 回答
0

用于tableView: willDisplayHeaderView:自定义即将显示的视图。

这使您能够获取已经为标题视图创建的视图并对其进行扩展,而不必自己重新创建整个标题视图。

这是一个示例,它根据 BOOL 为标题部分着色,并向标题添加详细文本元素。

- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section
{
//    view.tintColor = [UIColor colorWithWhite:0.825 alpha:1.0]; // gray
//    view.tintColor = [UIColor colorWithRed:0.825 green:0.725 blue:0.725 alpha:1.0]; // reddish
//    view.tintColor = [UIColor colorWithRed:0.925 green:0.725 blue:0.725 alpha:1.0]; // pink

    // Conditionally tint the header view
    BOOL isMyThingOnOrOff = [self isMyThingOnOrOff];

    if (isMyThingOnOrOff) {
        view.tintColor = [UIColor colorWithRed:0.725 green:0.925 blue:0.725 alpha:1.0];
    } else {
        view.tintColor = [UIColor colorWithRed:0.925 green:0.725 blue:0.725 alpha:1.0];
    }

    /* Add a detail text label (which has its own view to the section header… */
    CGFloat xOrigin = 100; // arbitrary
    CGFloat hInset = 20;
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(xOrigin + hInset, 5, tableView.frame.size.width - xOrigin - (hInset * 2), 22)];

    label.textAlignment = NSTextAlignmentRight;

    [label setFont:[UIFont fontWithName:@"Helvetica-Bold" size:14.0]
    label.text = @"Hi.  I'm the detail text";

    [view addSubview:label];
}
于 2017-11-09T00:15:35.103 回答
0

斯威夫特 4.2

在 Swift 4.2 中,表的名称略有变化。

    func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
        let view = UIView(frame: CGRect(x: 0, y: 0, width: tableView.frame.size.width, height: 18))
        let label = UILabel(frame: CGRect(x: 10, y: 5, width: tableView.frame.size.width, height: 18))
        label.font = UIFont.systemFont(ofSize: 14)
        label.text = list.objectAtIndex(section) as! String
        view.addSubview(label)
        view.backgroundColor = UIColor.gray // Set your background color

        return view
    }
于 2020-03-11T11:29:03.887 回答
0

如果您只想为 tableView 标题添加标题,请不要添加视图。在 swift 3.x 中,代码如下所示:

override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
    var lblStr = ""
    if section == 0 {
        lblStr = "Some String 1"
    }
    else if section == 1{
        lblStr = "Some String 2"
    }
    else{
        lblStr = "Some String 3"
    }
    return lblStr
}

您可以实现一个数组来获取标题的标题。

于 2017-03-10T13:10:08.317 回答
0

Swift 5 的代码

我们可以通过使用两个 tableView 委托函数来实现这一点:

1]我们可以为该部分提供自定义高度:

func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
    return 49
}
    

2]然后我们可以创建自定义标题:

 func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    let sectionV = UIView.init(frame: CGRect(x: 0, y: 0, width: tableView.frame.width, height: 48) )
    let titleLbl = UILabel.init(frame: CGRect(x: 25, y: 24, width: tableView.frame.width-150, height: 20) )
    let viewAllBtn = UIButton.init(frame: CGRect(x: tableView.frame.width-150, y: 15, width: self.view.frame.width - titleLbl.frame.width, height: 45))
    viewAllBtn.titleLabel?.font = UIFont.systemFont(ofSize: 15)
    viewAllBtn.setTitle("View All", for: .normal)
    viewAllBtn.setTitleColor(.systemBlue, for: .normal)
    viewAllBtn.tag = section
    titleLbl.text = dashboardTempData.data?[section].title
    titleLbl.font = UIFont.systemFont(ofSize: 21, weight: UIFont.Weight.medium)
    sectionV.backgroundColor = .systemBackground
    sectionV.addSubview(titleLbl)
    sectionV.addSubview(viewAllBtn)
    sectionV.bringSubviewToFront(viewAllBtn)
    return sectionV
}

它将创建一个节标题高度为 49 的标签和按钮

于 2021-06-02T15:54:46.360 回答