Answers for "change title color in navigation bar iOS 15"

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

Code answers related to "change title color in navigation bar iOS 15"

Code answers related to "Swift"

Browse Popular Code Answers by Language