Last active
December 19, 2017 14:18
-
-
Save AttiaMo/8e0489c38412008d2d2e6627099b1a17 to your computer and use it in GitHub Desktop.
Use the font
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
extension UIFont { | |
class func appRegularFontWith( size:CGFloat ) -> UIFont{ | |
return UIFont(name: "HelveticaNeueW23forSKY-Reg", size: size)! | |
} | |
class func appBoldFontWith( size:CGFloat ) -> UIFont{ | |
return UIFont(name: "HelveticaNeueW23foSKY-Bd", size: size)! | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment