Files
2024-09-04 04:26:04 +03:00

16 lines
359 B
Swift
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// Font.swift
// ContainerControllerSwift_Example
//
// Created by Рустам Мотыгуллин on 08.08.2024.
// Copyright © 2024 CocoaPods. All rights reserved.
//
import UIKit
extension UIFont {
class func mediumSystemFont(ofSize pointSize: CGFloat) -> UIFont {
return self.systemFont(ofSize: pointSize, weight: .medium)
}
}