Skip to content

Instantly share code, notes, and snippets.

@AttiaMo
Last active December 19, 2017 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AttiaMo/8e0489c38412008d2d2e6627099b1a17 to your computer and use it in GitHub Desktop.
Save AttiaMo/8e0489c38412008d2d2e6627099b1a17 to your computer and use it in GitHub Desktop.
Use the font
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