Skip to content

Instantly share code, notes, and snippets.

@aerialcombat
Last active November 23, 2022 16:23
Show Gist options
  • Save aerialcombat/a730c4c8fd4f12cb11716560ee808bc7 to your computer and use it in GitHub Desktop.
Save aerialcombat/a730c4c8fd4f12cb11716560ee808bc7 to your computer and use it in GitHub Desktop.
UIFont extension for scaling fonts with UIFontMetrics
//
// UIFont+Extensions.swift
//
// UIFont extension for scaling fonts with UIFontMetrics
//
import UIKit
extension UIFont {
func scaledFont(forTextStyle textStyle: UIFont.TextStyle) -> UIFont {
return UIFontMetrics(forTextStyle: textStyle).scaledFont(for: self)
}
}
@aerialcombat
Copy link
Author

aerialcombat commented Nov 23, 2022

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment