Skip to content

Instantly share code, notes, and snippets.

@db42
Created October 29, 2017 04:28
Show Gist options
  • Save db42/3c9ca1a01a53ea87ac44e1eb163a0d37 to your computer and use it in GitHub Desktop.
Save db42/3c9ca1a01a53ea87ac44e1eb163a0d37 to your computer and use it in GitHub Desktop.
Swift 4 recipes: Attributed title for navigation bar
let navLabel = UILabel()
let navTitle = NSMutableAttributedString(string: "PLAIN", attributes:[
NSAttributedStringKey.foregroundColor: UIColor.blue,
NSAttributedStringKey.font: UIFont.systemFont(ofSize: 17.0, weight: UIFont.Weight.light)])
navTitle.append(NSMutableAttributedString(string: "BOLD", attributes:[
NSAttributedStringKey.font: UIFont.boldSystemFont(ofSize: 17.0),
NSAttributedStringKey.foregroundColor: UIColor.blue]))
navLabel.attributedText = navTitle
self.navigationItem.titleView = navLabel
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment