BGFontMacro.h 727 B

12345678910111213141516171819202122
  1. //
  2. // BGFontMacro.h
  3. // BuguLive
  4. //
  5. // Created by xfg on 16/8/3.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. // 字体宏
  8. #ifndef FWFontMacro_h
  9. #define FWFontMacro_h
  10. #define kAppLargeTextFont [UIFont systemFontOfSize:16]
  11. #define kAppMiddleTextFont_1 [UIFont systemFontOfSize:15]
  12. #define kAppMiddleTextFont [UIFont systemFontOfSize:14]
  13. #define kAppSmallTextFont_1 [UIFont systemFontOfSize:13]
  14. #define kAppSmallTextFont [UIFont systemFontOfSize:12]
  15. #define kAppSmallerTextFont_1 [UIFont systemFontOfSize:11]
  16. #define kAppSmallerTextFont [UIFont systemFontOfSize:10]
  17. #define kAppSSeventeenTextFont [UIFont systemFontOfSize:17]
  18. #endif /* FWFontMacro_h */