UIFont+YH.h 763 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // UIFont+YH.h
  3. // WildFireChat
  4. //
  5. // Created by Zack Zhang on 2020/3/15.
  6. // Copyright © 2020 WildFireChat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef NS_ENUM(NSInteger, FontWeightStyle) {
  11. FontWeightStyleMedium, // 中黑体
  12. FontWeightStyleSemibold, // 中粗体
  13. FontWeightStyleLight, // 细体
  14. FontWeightStyleUltralight, // 极细体
  15. FontWeightStyleRegular, // 常规体
  16. FontWeightStyleThin, // 纤细体
  17. };
  18. @interface UIFont (YH)
  19. /**
  20. 苹方字体
  21. @param fontWeight 字体粗细(字重)
  22. @param fontSize 字体大小
  23. @return 返回指定字重大小的苹方字体
  24. */
  25. + (UIFont *)pingFangSCWithWeight:(FontWeightStyle)fontWeight size:(CGFloat)fontSize;
  26. @end
  27. NS_ASSUME_NONNULL_END