Voglio impostare lo sfondo affinché la barra di navigazione sia nera e tutti i colori al suo interno siano bianchi .
Quindi, ho usato questo codice:
[[UINavigationBar appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor whiteColor],
NSForegroundColorAttributeName,
[UIColor whiteColor],
NSForegroundColorAttributeName,
[NSValue valueWithUIOffset:UIOffsetMake(0, -1)],
NSForegroundColorAttributeName,
[UIFont fontWithName:@"Arial-Bold" size:0.0],
NSFontAttributeName,
nil]];
Ma tasto posteriore colore del testo , freccia e pulsante della barra hanno ancora predefiniti colore blu .
Come cambiare quei colori come nell'immagine qui sotto?