I have a quick question for you. Is it posible to change the color of the status bar in iOS 7 (Like Facebook app) And is it also possible to increase the transparency of the status bar ?
Thank you in advance, Davy
I have a quick question for you. Is it posible to change the color of the status bar in iOS 7 (Like Facebook app) And is it also possible to increase the transparency of the status bar ?
Thank you in advance, Davy
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0)?YES:NO) {
[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"newImage.png"] forBarMetrics:UIBarMetricsDefault];
}else{
[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"previousImage.png"] forBarMetrics:UIBarMetricsDefault];
}
Or you can also do this:
[UINavigationBar appearance].barTintColor = [UIColor redColor];
if you are not showing navigation bar in your application.
You can change navigation bar color to change status bar color.
[UINavigationBar appearance].barTintColor = [UIColor greenColor];