UITableView-更改节标题颜色


Answers:


393

希望UITableViewDelegate协议中的此方法可以帮助您入门:

目标C:

- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section 
{
  UIView *headerView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 30)] autorelease];
  if (section == integerRepresentingYourSectionOfInterest)
     [headerView setBackgroundColor:[UIColor redColor]];
  else 
     [headerView setBackgroundColor:[UIColor clearColor]];
  return headerView;
}

迅速:

func tableView(_ tableView: UITableView!, viewForHeaderInSection section: Int) -> UIView!
{
  let headerView = UIView(frame: CGRect(x: 0, y: 0, width: tableView.bounds.size.width, height: 30))
  if (section == integerRepresentingYourSectionOfInterest) {
    headerView.backgroundColor = UIColor.redColor()
  } else {
    headerView.backgroundColor = UIColor.clearColor()
  }
  return headerView
}

2017年更新:

斯威夫特3:

func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView?
    {
        let headerView = UIView(frame: CGRect(x: 0, y: 0, width: tableView.bounds.size.width, height: 30))
        if (section == integerRepresentingYourSectionOfInterest) {
            headerView.backgroundColor = UIColor.red
        } else {
            headerView.backgroundColor = UIColor.clear
        }
        return headerView
    }

替换[UIColor redColor]为任何UIColor您想要的。您可能还希望调整的尺寸headerView


17
它还可以使用self.tableView.sectionHeaderHeight来帮助调整节标题的大小。否则,您可能无法查看显示的节标题文本。
Tony Lenzi 2010年

可正常工作,[UIColor xxxColor]但是当我尝试从photoshop可以得到的自定义颜色(因此使用时UIColor red:green:blue:alpha:,它只是白色。我做错了吗?
Matej 2013年

发布一个单独的问题,我们将尽力提供帮助。包括源代码。
亚历克斯·雷诺兹

12
请注意,此答案(虽然正确)将仅返回不包含任何内容的UIView。
Greg M. Krsak 2013年

7
这是非常过时的信息,仅创建另一个视图并不是最佳答案。其想法是获得正确的视图并更改其颜色或色调。下面使用willDisplayHeaderView的答案是一种更好的方法。
Alex Zavatone 2015年

741

这是一个老问题,但我认为答案需要更新。

此方法不涉及定义和创建自己的自定义视图。在iOS 6及更高版本中,您可以通过定义以下内容来轻松更改背景颜色和文本颜色:

-(void)tableView:(UITableView *)tableView 
    willDisplayHeaderView:(UIView *)view 
    forSection:(NSInteger)section

节委托方法

例如:

- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section
{
    // Background color
    view.tintColor = [UIColor blackColor];

    // Text Color
    UITableViewHeaderFooterView *header = (UITableViewHeaderFooterView *)view;
    [header.textLabel setTextColor:[UIColor whiteColor]];

    // Another way to set the background color
    // Note: does not preserve gradient effect of original header
    // header.contentView.backgroundColor = [UIColor blackColor];
}

取自我的帖子:https//happyteamlabs.com/blog/ios-how-to-customize-table-view-header-and-footer-colors/

迅捷3/4

func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int){
    view.tintColor = UIColor.red
    let header = view as! UITableViewHeaderFooterView
    header.textLabel?.textColor = UIColor.white
}

2
我什至不知道这甚至已添加到SDK中。辉煌!绝对正确的答案。
JRod 2014年

1
OP-请更新对此答案的接受答案。比旧方法干净得多。
凯尔·克莱格

10
这似乎不适用于我。文字颜色有效,但标题背景的色彩无效。我使用的是iOS 7.0.4
zeeple 2014年

10
user1639164,您可以使用header.backgroundView.backgroundColor = [UIColor blackColor]; 设置标题背景的色调。
慭慭流觞

2
@肯特显然已经有一段时间了,但是对于将来的人们,该header.contentView.backgroundColor = [UIColor blackColor];选项将为您提供一个不透明的标头
SparkyRobinson

98

这是更改文本颜色的方法。

UILabel *label = [[[UILabel alloc] initWithFrame:CGRectMake(10, 3, tableView.bounds.size.width - 10, 18)] autorelease];
label.text = @"Section Header Text Here";
label.textColor = [UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:0.75];
label.backgroundColor = [UIColor clearColor];
[headerView addSubview:label];

18
谢谢DoctorG-这很有用。顺便说一句-为了保留dataSource提供的现有标签,我修改了第二行,如下所示:label.text = [tableView.dataSource tableView:tableView titleForHeaderInSection:section]; 可能是不好的形式,但对我有用。也许这可以帮助别人。
JJ Rohrer

1
@JJ这种形式实际上很好,因为您正在调用最初用于定义表的节头的方法。
蒂姆(Tim)

3
我删除了自动发行版,并将其更改为显式发行版。UITableView格式化方法被调用很多次。尽可能避免使用自动释放。
回忆录,2011年

@Harkonian,而不是更改提交的答案,请在答案的注释中建议更改。通过编辑来更改其他人的代码被认为是不好的形式。拼写错误以及不良的格式和语法是公平的游戏。
Tin Man

1
代替addSubview:UILabel,您应该只在viewForHeaderInSection中返回UILabel。UILable已经是UIView了:)
Nas Banov

52

如果希望标题具有自定义颜色,则可以执行以下操作:

[[UITableViewHeaderFooterView appearance] setTintColor:[UIColor redColor]];

自iOS 6.0起,此解决方案就非常有效。


1
嗯...对我不起作用。尝试过iOS 6模拟器和iOS 7设备。您是否以此方式测试过?我应该放在哪里?
Maxim Kholyavkin 2014年

可以在application:didFinishLaunchingWithOptions:应用程序委托方法中完成。
Leszek Zarna 2014年

我的错:我尝试在UITableViewStyleGrouped BTW时使用这种方式:应该使用这种方式更改文本颜色stackoverflow.com/a/20778406/751932
Maxim Kholyavkin 2014年

如果在自定义UIView中,则将其放在-init方法中。
felixwcf '16

31

以下解决方案适用于带有iOS 8+的Swift 1.2

override func tableView(tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {

    // This changes the header background
    view.tintColor = UIColor.blueColor()

    // Gets the header view as a UITableViewHeaderFooterView and changes the text colour
    var headerView: UITableViewHeaderFooterView = view as! UITableViewHeaderFooterView
    headerView.textLabel.textColor = UIColor.redColor()

}

22

不建议在UITableViewHeaderFooterView上设置背景颜色。请contentView.backgroundColor改用。


21

不要忘记从委托中添加这段代码,否则在某些情况下,相对于视图/标签的高度,视图将被截断或出现在表格后面。

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

如果你遵循由DJ S的iOS6的,后来回答这个不需要了
Bjinse

21

您可以在大约2秒钟内在main.storyboard上完成此操作。

  1. 选择表格视图
  2. 转到属性检查器
  3. 项目清单
  4. 向下滚动到查看子标题
  5. 换背景”

在这里看看


18

如果您不想创建自定义视图,还可以像这样更改颜色(需要iOS 6):

-(void) tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section {
    if ([view isKindOfClass: [UITableViewHeaderFooterView class]]) {
        UITableViewHeaderFooterView* castView = (UITableViewHeaderFooterView*) view;
        UIView* content = castView.contentView;
        UIColor* color = [UIColor colorWithWhite:0.85 alpha:1.]; // substitute your color here
        content.backgroundColor = color;
    }
}

13

设置分区区域的背景和文本颜色:(感谢William JockuschDj S

- (void)tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view forSection:(NSInteger)section
{
    if ([view isKindOfClass: [UITableViewHeaderFooterView class]]) {
        UITableViewHeaderFooterView* castView = (UITableViewHeaderFooterView*) view;
        castView.contentView.backgroundColor = [UIColor grayColor];
        [castView.textLabel setTextColor:[UIColor grayColor]];
    }
}

13

斯威夫特4

要更改UITableView节的Header View 的背景颜色文本标签颜色字体,只需willDisplayHeaderView为表视图覆盖即可,如下所示:

override func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
        let header = view as! UITableViewHeaderFooterView
        header.backgroundView?.backgroundColor = .white
        header.textLabel?.textColor = .black
        header.textLabel?.font = UIFont(name: "Helvetica-Bold", size: 14)
} 

这对我来说非常有效;希望它对您有帮助!


不建议在UITableViewHeaderFooterView上设置背景色。您必须将具有所需背景颜色的自定义UIView设置为backgroundView属性。
mojtaba al moussawi,

10

以下是在标题视图中添加图像的方法:

- (UIView *) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section 
{
    UIView *headerView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, 30)] autorelease];
    UIImageView *headerImage = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"top-gery-bar.png"]] autorelease];

    headerImage.frame = CGRectMake(0, 0, tableView.bounds.size.width, 30);

    [headerView addSubview:headerImage];

    return headerView;
}

8

对于iOS8(测试版)和Swift,请选择所需的RGB颜色,然后尝试以下操作:

override func tableView(tableView: UITableView!, viewForHeaderInSection section: Int) -> UIView! {
    var header :UITableViewHeaderFooterView = UITableViewHeaderFooterView()

    header.contentView.backgroundColor = UIColor(red: 254.0/255.0, green: 190.0/255.0, blue: 127.0/255.0, alpha: 1)
    return header

}

(因为我在项目中使用的是UITableViewController而不是普通的UIViewController,所以存在“替代”,但是更改节标题颜色不是必需的)

标头中的文本仍会显示。请注意,您将需要调整节标题高度。

祝好运。


6

SWIFT 2

我能够通过添加模糊效果成功地更改部分背景颜色(这确实很酷)。要轻松更改部分的背景颜色:

  1. 首先转到情节提要,然后选择表格视图
  2. 转到属性检查器
  3. 项目清单
  4. 向下滚动到查看
  5. 换背景”

然后为了模糊效果,添加到代码:

override func tableView(tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {

    // This is the blur effect

    let blurEffect = UIBlurEffect(style: .Light)
    let blurEffectView = UIVisualEffectView(effect: blurEffect)

    // Gets the header view as a UITableViewHeaderFooterView and changes the text colour and adds above blur effect
    let headerView: UITableViewHeaderFooterView = view as! UITableViewHeaderFooterView
    headerView.textLabel!.textColor = UIColor.darkGrayColor()
    headerView.textLabel!.font = UIFont(name: "HelveticaNeue-Light", size: 13)
    headerView.tintColor = .groupTableViewBackgroundColor()
    headerView.backgroundView = blurEffectView

}

5

我知道它的回答,以防万一,在Swift中使用以下命令

    override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
        let tableViewWidth = self.tableView.bounds

        let headerView = UIView(frame: CGRectMake(0, 0, tableViewWidth.size.width, self.tableView.sectionHeaderHeight))
        headerView.backgroundColor = UIColor.greenColor()

        return headerView
    }

4

iOS 8以上

func tableView(tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
        tableView.tableHeaderView?.backgroundColor = UIColor.blue()
}

4

基于@Dj S答案,使用Swift3。这在iOS 10上效果很好。

func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
    // Background color
    view.tintColor = UIColor.black

    // Text Color
    let headerView = view as! UITableViewHeaderFooterView
    headerView.textLabel?.textColor = UIColor.white
}

3

我在iOS 7.x中有一个使用静态表格视图单元格的项目。willDisplayHeaderView不会触发。但是,此方法可以正常工作:

- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    NSLog(@"%s", __FUNCTION__);
    CGRect headerFrame = CGRectMake(x, y, w, h);    
    UIView *headerView = [[UIView alloc] initWithFrame:headerFrame];  
    headerView.backgroundColor = [UIColor blackColor];

3
 -(void) tableView:(UITableView *)tableView willDisplayHeaderView:(UIView *)view
  forSection:(NSInteger)section
  {
        if ([view isKindOfClass: [UITableViewHeaderFooterView class]])
        {
             UITableViewHeaderFooterView *castView = (UITableViewHeaderFooterView *) view;
             UIView *content = castView.contentView;
             UIColor *color = [UIColor whiteColor]; // substitute your color here
             content.backgroundColor = color;
             [castView.textLabel setTextColor:[UIColor blackColor]];
        }
 }

3

我认为这段代码还不错。

func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    let headerView = tableView.dequeueReusableHeaderFooterViewWithIdentifier(MyHeaderView.reuseIdentifier) as MyHeaderView
    let backgroundView = UIView()
    backgroundView.backgroundColor = UIColor.whiteColor()
    headerView.backgroundView = backgroundView
    headerView.textLabel.text = "hello"
    return headerView
}

3

Swift 4使其非常容易。只需将其添加到您的班级并根据需要设置颜色。

override func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
        view.backgroundColor = UIColor(red: 0.094, green: 0.239, blue: 0.424, alpha: 1.0)
    }

或者如果是简单的颜色

override func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
        view.backgroundColor = UIColor.white
    }

已为Swift 5更新

override func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
        view.tintColor = UIColor(red: 0.094, green: 0.239, blue: 0.424, alpha: 1.0)
    }

或者如果是简单的颜色

override func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
        view.tintColor = UIColor.white
    }

4
在iOS 13中,将“ view.backgroundColor”替换为“ view.tintColor”。
Bogdan Razvan

2

在iOS 7.0.4中,我使用它自己的XIB创建了一个自定义标头。在此之前没有提到任何有效的方法。它必须是UITableViewHeaderFooterView的子类才能使用,dequeueReusableHeaderFooterViewWithIdentifier:并且看来该类在背景颜色方面非常顽固。所以最后我添加了一个名称为customBackgroudView的UIView(可以使用代码或IB来完成),然后将其设置为backgroundColor属性。在layoutSubviews中:我将该视图的框架设置为边界。它可与iOS 7配合使用,不会出现任何故障。

// in MyTableHeaderView.xib drop an UIView at top of the first child of the owner
// first child becomes contentView

// in MyTableHeaderView.h
@property (nonatomic, weak) IBOutlet UIView * customBackgroundView;

// in MyTableHeaderView.m
-(void)layoutSubviews;
{
    [super layoutSubviews];

    self.customBackgroundView.frame = self.bounds;
}
// if you don't have XIB / use IB, put in the initializer:
-(id)initWithReuseIdentifier:(NSString *)reuseIdentifier
{
    ...
    UIView * customBackgroundView = [[UIView alloc] init];
    [self.contentView addSubview:customBackgroundView];
    _customBackgroundView = customBackgroundView;
    ...
}


// in MyTableViewController.m
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    MyTableHeaderView * header = [self.tableView
                                          dequeueReusableHeaderFooterViewWithIdentifier:@"MyTableHeaderView"];
    header.customBackgroundView.backgroundColor = [UIColor redColor];
    return header;
}

2

只需更改标题视图的图层颜色

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)部分 
{
  UIView * headerView = [[[UIView分配] initWithFrame:CGRectMake(0,0,tableView.bounds.size.width,30)]自动释放];
 headerView.layer.backgroundColor = [UIColor clearColor] .CGColor
}


2

如果有人需要迅速处理,请保留标题:

override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    let view = UIView(frame: CGRect(x: 0,y: 0,width: self.tableView.frame.width, height: 30))
    view.backgroundColor = UIColor.redColor()
    let label = UILabel(frame: CGRect(x: 15,y: 5,width: 200,height: 25))
    label.text = self.tableView(tableView, titleForHeaderInSection: section)
    view.addSubview(label)
    return view
}

2

我通过控制台日志从Xcode收到消息

[TableView]在UITableViewHeaderFooterView上设置背景颜色已被弃用。请改为将具有所需背景颜色的自定义UIView设置为backgroundView属性。

然后,我只是创建一个新的UIView并将其放置为HeaderView的背景。这不是一个好的解决方案,但是就像Xcode所说的那样容易。


2

就我而言,它的工作方式如下:

let headerIdentifier = "HeaderIdentifier"
let header = self.tableView.dequeueReusableHeaderFooterView(withIdentifier: headerIdentifier)
header.contentView.backgroundColor = UIColor.white

2

只需设置背景视图的背景颜色即可:

func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int){         
  let tableHeader = view as! UITableViewHeaderFooterView        
  tableHeader.backgroundView?.backgroundColor = UIColor.white     
}

1

使用RubyMotion / RedPotion,将其粘贴到TableScreen中:

  def tableView(_, willDisplayHeaderView: view, forSection: section)
    view.textLabel.textColor = rmq.color.your_text_color
    view.contentView.backgroundColor = rmq.color.your_background_color
  end

奇迹般有效!


1

快速5 +

willDisplayHeaderView方法

func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {

     //For Header Background Color
     view.tintColor = .black

    // For Header Text Color
    let header = view as! UITableHeaderFooterView
    header.textLabel?.textColor = .white
}

我希望这可以帮助你 :]


0

尽管func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int)也可以,但无需实现其他委托方法就可以实现。在您的func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView?方法中,可以使用view.contentView.backgroundColor = UIColor.whiteview.backgroundView?.backgroundColor = UIColor.white不起作用。(我知道这backgroundView是可选的,但是即使它存在,如果不实现,这也是无法实现的willDisplayHeaderView

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.