Swift version: 5.10
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
SPONSORED Alex is the iOS & Mac developer’s ultimate AI assistant. It integrates with Xcode, offering a best-in-class Swift coding agent. Generate modern SwiftUI from images. Fast-apply suggestions from Claude 3.5 Sonnet, o3-mini, and DeepSeek R1. Autofix Swift 6 errors and warnings. And so much more. Start your 7-day free trial today!
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.