Skip to content

Instantly share code, notes, and snippets.

@nikans
nikans / Fonts.swift
Created July 27, 2017 12:29 — forked from feighter09/Fonts.swift
Set global font for iOS app in one place
// Kinda updated for Swift 3.1
// MARK: - Swizzling
extension UIFont {
class var defaultFontFamily: String { return "Georgia" }
override open class func initialize()
{
if self == UIFont.self {
swizzleSystemFont()