I want to change the navigation bar tint controller colour to the colour: R: 73, G: 155, B: 255, A: 0.7
Till now, I have only been able to change it to the colours in the system. Here is an example in the Delegate:
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
UINavigationBar.appearance().barTintColor = UIColor.blueColor()
UINavigationBar.appearance().tintColor = UIColor.whiteColor()
return true
}
Also, I would like to be able to change the navigation view controller title colour to white too!
If it is possible I want to change the tab bar tint colour to R: 73, G: 155, B: 255, A: 0.7 and their texts to white.