Swift version: 5.6
If you're setting title's in a navigation bar, you can customize the font, size and color of those titles by adjusting the titleTextAttributes
attribute for your navigation bar.
To do this on a single bar just set it directly whenever you want to; to change all bars, set it inside your app delegate using the appearance proxy for UINavigationBar
so that it kicks in before the first bar is loaded.
Here's an example that makes title text be 24-point Georgia Bold in red:
let attrs = [
NSAttributedString.Key.foregroundColor: UIColor.red,
NSAttributedString.Key.font: UIFont(name: "Georgia-Bold", size: 24)!
]
UINavigationBar.appearance().titleTextAttributes = attrs
SAVE 50% To celebrate WWDC22, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 6.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.