Last active
January 3, 2017 22:30
-
-
Save sauvikatinnofied/8d18fb620e7c6ca6310ed2d28be58b8a to your computer and use it in GitHub Desktop.
MediumFontUsagesBlogGist6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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