Skip to content

Instantly share code, notes, and snippets.

@Julioacarrettoni
Forked from rrenna/gist:ec2fa0dc5707d6ae4411
Last active August 29, 2015 14:10
Show Gist options
  • Save Julioacarrettoni/f68a2d9fe2374625b428 to your computer and use it in GitHub Desktop.
Save Julioacarrettoni/f68a2d9fe2374625b428 to your computer and use it in GitHub Desktop.
// Extend UILabel with a method which sets font, to be used by UIAppearance
extension UILabel
{
func setFontName(fontName:String)
{
self.font = UIFont(name: fontName, size: self.font.pointSize)
}
}
// Somewhere in the code, call the extension method on the UIAppearance proxy object of UILabel, example:
//
// UILabel.appearance().setFontName("HandelGothicBT-Regular")
//
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment