修改TableView SectionHeader的字体颜色

修改TableView SectionHeader的字体颜色
方法一:创建一个新的view并 设置为sectionHeaderView
方法二:

  • (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];
    }

你可能感兴趣的:(修改TableView SectionHeader的字体颜色)