Skip to content

Instantly share code, notes, and snippets.

@iAmrSalman
Created August 1, 2017 11:49
Show Gist options
  • Save iAmrSalman/9d606a7c30db9f08f77fe43f30532110 to your computer and use it in GitHub Desktop.
Save iAmrSalman/9d606a7c30db9f08f77fe43f30532110 to your computer and use it in GitHub Desktop.
[UINavigationBar Appearance] #swift3 #navigationBar
func AV_FONT(_ size: CGFloat) -> (UIFont?) {
return UIFont(name: "Avenir-Medium", size: size)
}
if let font = AV_FONT(12) {
UINavigationBar.appearance().titleTextAttributes = [NSFontAttributeName: font, NSForegroundColorAttributeName: UIColor.white]
}
UINavigationBar.appearance().barTintColor = Colors.Primary
UINavigationBar.appearance().tintColor = Colors.White
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment