In my app I am set the image of navigationBar.
But I want to status bar as defaultBlack as ios6.
My code is as follow:
NSString *ver = [[UIDevice currentDevice] systemVersion];
int ver_int = [ver intValue];
NSString* toReturn=@"";
toReturn = @"logo_bar.png";
[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:toReturn] forBarMetrics:UIBarMetricsDefault];
Help me to solve this.