1

我搜索了好几个小时,但找不到任何解决方案,我认为这很简单,但似乎并非如此。我有一个 tableView 并附加了一个 viewController 作为 tableViewController 的子类。现在我只想更改部分的标题颜色。由于在情节提要中这是不可能的,我真的很想知道我可以使用哪些代码来实现它。

4

1 回答 1

3

这是 100% 的工作,您可以更改索引或标题文本颜色

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

    // if you have index/header text in your tableview change your index text color 
    UITableViewHeaderFooterView *headerIndexText = (UITableViewHeaderFooterView *)view;
    [headerIndexText.textLabel setTextColor:[UIColor blueColor]];

}
于 2014-01-30T10:18:15.997 回答