Skip to content

Instantly share code, notes, and snippets.

@baz8080
Created May 21, 2020 11:35
Show Gist options
  • Save baz8080/b80aa7250337cf0f2a1a8b3b190f49a4 to your computer and use it in GitHub Desktop.
Save baz8080/b80aa7250337cf0f2a1a8b3b190f49a4 to your computer and use it in GitHub Desktop.
NavigationBar styling
// Zendesk SDK ViewController inherit the style from your NavigationController.
// This code shows how to set those properties so they are inherited by Zendesk.
// Back button
navigationController?.navigationBar.tintColor = .black
// Title
let textAttributes = [NSAttributedString.Key.foregroundColor: UIColor.blue]
navigationController?.navigationBar.titleTextAttributes = textAttributes
// Present
navigationController?.pushViewController(viewController, animated: true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment