UIFont+Ext.h 474 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // UIFont+Ext.h
  3. // UniversalApp
  4. //
  5. // Created by bugu on 2020/3/21.
  6. // Copyright © 2020 voidcat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface UIFont (Ext)
  11. + (instancetype)bg_mediumFont17;
  12. + (instancetype)bg_mediumFont16;
  13. + (instancetype)bg_mediumFont15;
  14. + (instancetype)bg_mediumFont14;
  15. + (instancetype)bg_mediumFont13;
  16. + (instancetype)bg_mediumFont11;
  17. + (UIFont*)mediumFont:(CGFloat)size;
  18. @end
  19. NS_ASSUME_NONNULL_END