-
-
Save xrksudy/78305f2979e29db99b29 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UIImagePickerController *imagePickerController = [[UIImagePickerController alloc] init]; | |
// for light navigation item text, or UIBarStyleDefault for dark navigation item text | |
imagePickerController.navigationBar.barStyle = UIBarStyleBlack; | |
// the actual color will be affected by the translucency setting | |
imagePickerController.navigationBar.barTintColor = [UIColor blueColor]; | |
// default is YES, but you could change to NO | |
imagePickerController.navigationBar.translucent = YES; | |
// left/right bar button tint color | |
imagePickerController.navigationBar.tintColor = [UIColor orangeColor]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment