Last active
June 15, 2017 12:23
-
-
Save Marcocanc/88290e844a1b2a2c6c1548e48239c408 to your computer and use it in GitHub Desktop.
Custom Fonts in iOS
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
import Foundation | |
/// Custom FontWeights to be used with the .font UIFont class functions | |
public enum FontWeight: String { | |
case regular = "Regular" | |
case medium = "Medium" | |
case black = "Black" | |
case light = "Light" | |
case thin = "Thin" | |
case bold = "Bold" | |
case heavy = "Heavy" | |
case ultraLight = "UltLt" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment