Skip to content

Instantly share code, notes, and snippets.

@aniltv06
Created May 4, 2018 08:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aniltv06/2f2e7628cbb2ed405824b80a1692c9fa to your computer and use it in GitHub Desktop.
Save aniltv06/2f2e7628cbb2ed405824b80a1692c9fa to your computer and use it in GitHub Desktop.
UINavigationBar multi-line title
let label = UILabel(frame: CGRect(x: 0.0, y: 0.0, width: UIScreen.main.bounds.width, height: 44.0))
label.backgroundColor = UIColor.clear
label.numberOfLines = 0
label.textAlignment = NSTextAlignment.center
label.text = "FirstLine\nSecondLine"
label.textColor = .white
self.navigationItem.titleView = label
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment