I've succeeded setting the background color of the navigation bar to black. In the AppDelegate.m:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
// Override point for customization after application launch.
UINavigationBar *navigationBarAppearance = [UINavigationBar appearance];
[navigationBarAppearance setBarTintColor:[UIColor blackColor]];
[[UINavigationBar appearance] setTranslucent:NO];
return YES;
}
Is there a way to set the navigation bar title and the icons in the status bar to white?