web-dev-qa-db-fra.com

Comment changer la couleur de la police du titre en type groupé UITableView?

J'ai une vue de table de type groupée et elle a l'air plutôt cool.

Mais, si je change la couleur d'arrière-plan du tableau en noir, les titres deviennent flous.

Est-il possible de changer la couleur de la police et ses styles afin de la rendre plus lisible? Dois-je implémenter le tableView:viewForHeaderInSection: méthode?

43
Confused

Oui ... ça marche très bien maintenant!

J'ai créé tableView:viewForHeaderInSection: méthode et créé une UIView

UIView *customTitleView = [ [UIView alloc] initWithFrame:CGRectMake(10, 0, 300, 44)];

Ensuite, j'ai créé un UILabel et défini les valeurs de texte et les couleurs sur l'étiquette. Ensuite, j'ai ajouté l'étiquette à la vue

UILabel *titleLabel = [ [UILabel alloc] initWithFrame:CGRectMake(0, 0, 300, 44)];
titleLabel.text = @"<Title string here>";
titleLabel.textColor = [UIColor whiteColor];
titleLabel.backgroundColor = [UIColor clearColor];
[customTitleView addSubview:titleLabel];

Alors mon tableView:viewForHeaderInSection: la méthode ressemble à ...

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

    UIView *customTitleView = [ [UIView alloc] initWithFrame:CGRectMake(10, 0, 300, 44)];
    UILabel *titleLabel = [ [UILabel alloc] initWithFrame:CGRectMake(0, 0, 300, 44)];
    titleLabel.text = @"<Title string here>";
    titleLabel.textColor = [UIColor whiteColor];
    titleLabel.backgroundColor = [UIColor clearColor];
    [customTitleView addSubview:titleLabel];
    return customTitleView;
}

Nous devons ajouter tableView:heightForHeaderInSection: méthode pour fournir de l'espace au titre.

-(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section 
{
    return 44; 
}
22
Confused

Si vous avez juste besoin de changer la couleur ou la police de l'en-tête, utilisez tableView: willDisplayHeaderView: forSection:. Voici un exemple dans Swift:

Swift v5:

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

    if let view = view as? UITableViewHeaderFooterView {
        view.backgroundView?.backgroundColor = UIColor.blue
        view.textLabel?.backgroundColor = UIColor.clear
        view.textLabel?.textColor = UIColor.white
    }
}

Original:

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

    if let view = view as? UITableViewHeaderFooterView {
        view.backgroundView?.backgroundColor = ThemeBlue
        view.textLabel.backgroundColor = UIColor.clearColor()
        view.textLabel.textColor = UIColor.whiteColor()
    }

}
46
Code Commander

Pour utiliser les coordonnées par défaut et les sections dans TableView, avec une police et une ombre de couleur blanche:

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    NSString *sectionTitle = [self tableView:tableView titleForHeaderInSection:section];
    if (sectionTitle == nil) {
        return nil;
    }

    UILabel *label = [[UILabel alloc] init];
    label.frame = CGRectMake(20, 8, 320, 20);
    label.backgroundColor = [UIColor clearColor];
    label.textColor = [UIColor whiteColor];
    label.shadowColor = [UIColor grayColor];
    label.shadowOffset = CGSizeMake(-1.0, 1.0);
    label.font = [UIFont boldSystemFontOfSize:16];
    label.text = sectionTitle;

    UIView *view = [[UIView alloc] init];
    [view addSubview:label];

    return view;
}
43
Adriano Lucas
if ([UIDevice currentDevice].systemVersion.floatValue > 7.0) {
    [[UILabel appearanceWhenContainedIn:[UITableViewHeaderFooterView class], nil] setTextColor:[UIColor whiteColor]];
}
2
Nitesh Borad

De Apple

La vue tableau utilise un style de police fixe pour les titres d'en-tête de section. Si vous souhaitez un style de police différent, renvoyez une vue personnalisée (par exemple, un objet UILabel) dans la méthode déléguée tableView:viewForHeaderInSection: au lieu.

Utilisez donc la méthode ci-dessous et renvoyez votre vue personnalisée (UILabel) avec votre choix de police.

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

Lire à partir de Apple

2
Jhaliya

Swift 4.2

UILabel.appearance(whenContainedInInstancesOf: [UITableViewHeaderFooterView.self]).textColor = .white
0
Zoltan Vinkler