Answers for "change navigation controller title color swift"

2

how do change title color in navigation bar

navigationBar.largeTitleTextAttributes = [.foregroundColor: UIColor.white]
Posted by: Guest on November-23-2020
1

swift navigation bar title color

// Place this in your didFinishLaunchingWithOptions method in the AppDelegate
let attrs = [
  NSAttributedString.Key.foregroundColor: UIColor.white
]

UINavigationBar.appearance().titleTextAttributes = attrs
Posted by: Guest on June-16-2020
2

swift change navigation bar title

// Place this in your didFinishLaunchingWithOptions method in the AppDelegate
let attrs = [
  NSAttributedString.Key.foregroundColor: UIColor.white, // changes color
  NSAttributedString.Key.font: UIFont(name: "Futura-Bold", size: 17)! // changes font
]

UINavigationBar.appearance().titleTextAttributes = attrs
Posted by: Guest on June-16-2020

Code answers related to "change navigation controller title color swift"

Code answers related to "Swift"

Browse Popular Code Answers by Language