Skip to content

Instantly share code, notes, and snippets.

@sauvikatinnofied
Last active January 3, 2017 22:30
Show Gist options
  • Save sauvikatinnofied/8d18fb620e7c6ca6310ed2d28be58b8a to your computer and use it in GitHub Desktop.
Save sauvikatinnofied/8d18fb620e7c6ca6310ed2d28be58b8a to your computer and use it in GitHub Desktop.
MediumFontUsagesBlogGist6
let system12 = UIFont.systemFont(ofSize: 12.0) // Hard coded literals -> 1
let robotoThin20 = UIFont(name: "Roboto-Thin", size: 20.0) // Hard coded literals -> 2
let robotoBlack14 = UIFont(name: "Roboto-Black", size: 14.0) // Hard coded literals -> 2
let helveticaLight13 = UIFont(name: "Helvetica-Light", size: 13.0) // Hard coded literals -> 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment