Created
March 5, 2014 03:34
-
-
Save jonfriskics/9360674 to your computer and use it in GitHub Desktop.
UIImagePickerController tints
This file contains 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