Files
OrderScheduling/Pods/DDFontKit_Private/DDFontKit_Private/Classes/FontUtil.swift
DDIsFriend f0e8a1709d initial
2023-08-18 17:28:57 +08:00

21 lines
572 B
Swift

//
// FontUtility.swift
// HichefuOfDriverUtility
//
// Created by on 2023/2/14.
//
import Foundation
extension UIFont {
@inlinable static public func regularFont(_ size:CGFloat) -> UIFont {
return UIFont.systemFont(ofSize: size, weight: .regular)
}
@inlinable static public func mediumFont(_ size:CGFloat) -> UIFont {
return UIFont.systemFont(ofSize: size, weight: .medium)
}
@inlinable static public func semiboldFont(_ size:CGFloat) -> UIFont {
return UIFont.systemFont(ofSize: size, weight: .semibold)
}
}