Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing Navigation Controller colour swift

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.

like image 781
Arafat Qureshi Avatar asked Dec 12 '14 20:12

Arafat Qureshi


1 Answers

If you want to set the background color of the nav bar:

UINavigationBar.appearance().barTintColor = UIColor.redColor()

Note RGB values are from 0.0 to 1.0 so you have to divide them by 255 or your color will just be white. Next tint:

UINavigationBar.appearance().tintColor = UIColor(red: 73.0 / 255.0, green: 155.0 / 255.0, blue: 255.0/ 255.0, alpha: 1.0)

Then to set your title text:

UINavigationBar.appearance().titleTextAttributes = [NSForegroundColorAttributeName: someColor, NSFontAttributeName: someFont]

Finally for bar button items:

UIBarButtonItem.appearance().setTitleTextAttributes([NSForegroundColorAttributeName: color, NSFontAttributeName: buttonFont], forState: UIControlState.Normal)
like image 72
Ian Avatar answered Oct 21 '22 15:10

Ian