I created a navigation bar programmatically, and as far as I know, you can only make it "UIColor BlackColor" or "WhiteColor" or whatever. So the options are limited. Is there a way to be able to choose from a color palette or something, or use RGB sliders or some way to have thousands of color options?
feedback
|
|
Sure. You can make an arbitrary UIColor like so:
| |||
|
feedback
|
|
You can set the color by using the command:
Or the pre made colors in UIColor by typing:
"blue" being able to be replaced with many basic colors like black, red, grey, green, etc. But if you want an image as the background of the NavBar, you need to make a custom class that is a subclass of UINavigationBar. | |||
|
feedback
|