I'm looking for a simple thing, but it seems harder then i thought! I want to change the StatusBar color of my iPhone to be the exact same solid color as my NavigationBar. Kind of the same principle as in iOS7, but now in iOS6
Anyone who could help me out? This is the code i'm using now, but the problem here is that the statusbar gets an other color because of a shade.
UINavigationBar *navigationBarAppearance = [UINavigationBar appearance];
[navigationBarAppearance setBackgroundImage:[UIImage imageNamed:@"navigationbar_background"] forBarMetrics:UIBarMetricsDefault];
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackTranslucent];
Thanks