What is the correct way to color the UIImagePickerController\'s nav bar?
I merely tried to see the background color but I\'m getting a faded color as seen in the image bel
For Swift, IOS 8-10 As rintaro mentioned, I think the main issue here is changing the default translucent property of the picker navigationBar:
picker.navigationBar.translucent = false
This will cause the the navigation bar to use the UINavigationBar appearance if you set this somewhere in your app.
If you need another color you can use
picker.navigationBar.barTintColor = UIColor.someColor