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
SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until October 1st.
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.