Skip to content

Instantly share code, notes, and snippets.

@popcornomnom
Last active June 13, 2020 13:52
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 popcornomnom/acc2bf1e6ca349ba5cbbac75ffa54b8a to your computer and use it in GitHub Desktop.
Save popcornomnom/acc2bf1e6ca349ba5cbbac75ffa54b8a to your computer and use it in GitHub Desktop.
@available(iOS 13.0, *)
extension Font {
init(_ size: UIFont.Size, _ weight: UIFont.CustomWeight) {
self.init(.defaultFamily, size, weight)
}
init(_ family: UIFont.Family = .defaultFamily,
_ size: UIFont.Size, _ weight: UIFont.CustomWeight) {
self.init(UIFont(family, size, weight))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment