Skip to content

Instantly share code, notes, and snippets.

@TheCodedSelf
Last active January 19, 2016 17:52
Show Gist options
  • Save TheCodedSelf/c9bf89b2c84239a26b23 to your computer and use it in GitHub Desktop.
Save TheCodedSelf/c9bf89b2c84239a26b23 to your computer and use it in GitHub Desktop.
Playing with UINavigationBars
// Set title text
self.navigationItem.title = "Title"
// Set title text color
let desiredColor = UIColor.whiteColor()
navigationController!.navigationBar.titleTextAttributes = [NSForegroundColorAttributeName : desiredColor]
// Set back bar button item title
let backButton = UIBarButtonItem(title: "Back", style: .Plain, target: nil, action: nil)
self.navigationItem.backBarButtonItem = backButton
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment