Come posso cambiare il colore di un'intestazione di sezione in UITableView?
EDIT : la risposta fornita da DJ-S dovrebbe essere considerata per iOS 6 e versioni successive. La risposta accettata non è aggiornata.
Come posso cambiare il colore di un'intestazione di sezione in UITableView?
EDIT : la risposta fornita da DJ-S dovrebbe essere considerata per iOS 6 e versioni successive. La risposta accettata non è aggiornata.
Risposte:
Spero che questo metodo dal UITableViewDelegate
protocollo ti farà iniziare:
Objective-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;
}
Swift:
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
}
Aggiornato 2017:
Swift 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
}
Sostituisci [UIColor redColor]
con UIColor
quello che desideri. Potresti anche voler regolare le dimensioni di headerView
.
[UIColor xxxColor]
quando provo un colore personalizzato come quelli che posso ottenere da Photoshop (quindi usando il UIColor red:green:blue:alpha:
, è solo bianco. Sto facendo qualcosa di sbagliato?
Questa è una vecchia domanda, ma penso che la risposta debba essere aggiornata.
Questo metodo non implica la definizione e la creazione di una vista personalizzata. In iOS 6 e versioni successive, puoi facilmente cambiare il colore di sfondo e il colore del testo definendo
-(void)tableView:(UITableView *)tableView
willDisplayHeaderView:(UIView *)view
forSection:(NSInteger)section
metodo delegato di sezione
Per esempio:
- (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];
}
Tratto dal mio post qui: https://happyteamlabs.com/blog/ios-how-to-customize-table-view-header-and-footer-colors/
Swift 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
}
header.contentView.backgroundColor = [UIColor blackColor];
opzione ti darà un'intestazione opaca
Ecco come cambiare il colore del testo.
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];
Puoi farlo se vuoi un'intestazione con colore personalizzato:
[[UITableViewHeaderFooterView appearance] setTintColor:[UIColor redColor]];
Questa soluzione funziona benissimo da iOS 6.0.
La seguente soluzione funziona per Swift 1.2 con iOS 8+
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()
}
Non dimenticare di aggiungere questo pezzo di codice dal delegato o la tua vista verrà tagliata o apparirà dietro il tavolo in alcuni casi, relativamente all'altezza della tua vista / etichetta.
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
return 30;
}
Se non vuoi creare una vista personalizzata, puoi anche cambiare il colore in questo modo (richiede 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;
}
}
Imposta lo sfondo e il colore del testo dell'area della sezione: (Grazie a William Jockusch
e Dj 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]];
}
}
Swift 4
Per modificare il colore di sfondo , il colore dell'etichetta del testo e il carattere per la vista dell'intestazione di una sezione UITableView, basta sostituire willDisplayHeaderView
la vista della tabella in questo modo:
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)
}
Ha funzionato perfettamente per me; spero che ti aiuti anche tu!
Ecco come aggiungere un'immagine nella vista dell'intestazione:
- (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;
}
Per iOS8 (Beta) e Swift scegli il colore RGB che desideri e prova questo:
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
}
(La "sostituzione" è presente poiché sto usando UITableViewController invece di un normale UIViewController nel mio progetto, ma non è obbligatorio per cambiare il colore dell'intestazione della sezione)
Il testo dell'intestazione sarà comunque visualizzato. Nota che dovrai regolare l'altezza dell'intestazione della sezione.
In bocca al lupo.
SWIFT 2
Sono stato in grado di cambiare con successo il colore di sfondo della sezione con un effetto di sfocatura aggiunto (che è davvero fantastico). Per cambiare facilmente il colore di sfondo della sezione:
Quindi per l'effetto sfocatura, aggiungi al codice:
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
}
So che ha una risposta, per ogni evenienza, in Swift usa quanto segue
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
}
iOS 8+
func tableView(tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
tableView.tableHeaderView?.backgroundColor = UIColor.blue()
}
Basato sulla risposta di @Dj S, usando Swift 3. Funziona benissimo su 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
}
Ho un progetto che utilizza celle di visualizzazione di tabelle statiche, in iOS 7.x. willDisplayHeaderView non si attiva. Tuttavia, questo metodo funziona bene:
- (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];
-(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]];
}
}
Penso che questo codice non sia poi così male.
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
}
Swift 4 lo rende molto semplice. Basta aggiungere questo alla tua classe e impostare il colore secondo necessità.
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)
}
o se un colore semplice
override func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
view.backgroundColor = UIColor.white
}
Aggiornato per 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)
}
o se un colore semplice
override func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
view.tintColor = UIColor.white
}
In iOS 7.0.4 ho creato un'intestazione personalizzata con il proprio XIB. Nulla di menzionato qui prima ha funzionato. Doveva essere la sottoclasse di UITableViewHeaderFooterView per funzionare con dequeueReusableHeaderFooterViewWithIdentifier:
e sembra che la classe sia molto testarda riguardo al colore di sfondo. Quindi alla fine ho aggiunto un UIView (potresti farlo con codice o IB) con il nome customBackgroudView, e quindi ho impostato la proprietà backgroundColor. In layoutSubviews: ho impostato la cornice di quella vista su limiti. Funziona con iOS 7 e non dà problemi.
// 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;
}
Basta cambiare il colore del livello della vista dell'intestazione
- (UIView *) tableView: (UITableView *) tableView viewForHeaderInSection: sezione (NSInteger) { UIView * headerView = [[[UIView alloc] initWithFrame: CGRectMake (0, 0, tableView.bounds.size.width, 30)] autorelease]; headerView.layer.backgroundColor = [UIColor clearColor] .CGColor }
Se qualcuno ha bisogno di rapidità, mantiene il titolo:
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
}
Ho ricevuto un messaggio da Xcode attraverso il registro della console
[TableView] L'impostazione del colore di sfondo su UITableViewHeaderFooterView è diventata obsoleta. Si prega di impostare una UIView personalizzata con il colore di sfondo desiderato sulla proprietà backgroundView.
Quindi creo una nuova UIView e la poso come sfondo di HeaderView. Non è una buona soluzione ma è facile come diceva Xcode.
Nel mio caso, ha funzionato in questo modo:
let headerIdentifier = "HeaderIdentifier"
let header = self.tableView.dequeueReusableHeaderFooterView(withIdentifier: headerIdentifier)
header.contentView.backgroundColor = UIColor.white
Basta impostare il colore di sfondo della vista di sfondo:
func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int){
let tableHeader = view as! UITableViewHeaderFooterView
tableHeader.backgroundView?.backgroundColor = UIColor.white
}
Per rapido 5 +
Nel willDisplayHeaderView
metodo
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
}
Spero che questo ti aiuta :]
Anche se func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int)
funzionerà anche tu, puoi ottenerlo senza implementare un altro metodo delegato. nel tuo func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView?
metodo, puoi usare al view.contentView.backgroundColor = UIColor.white
posto del view.backgroundView?.backgroundColor = UIColor.white
quale non funziona. (So che backgroundView
è facoltativo, ma anche quando è lì, questo non si sveglia senza l'implementazionewillDisplayHeaderView