I developed iPad application. I\'m opening some screens in popover with navigation controller. But I did not change navigationcontroller tint color in IOS 7. How can I chang
The magical word here is barStyle
, you need to do the following if you need it black:
navigationController.navigationBar.barStyle = UIBarStyleBlack;
navigationController.navigationBar.translucent = NO;
And if you want to change its color:
navigationController.navigationBar.barTintColor = [UIColor redColor];
navigationController.navigationBar.barStyle = UIBarStyleBlack;
navigationController.navigationBar.translucent = NO;