//
//? Font.h
//? HappyStyle
//
//? Created by Zhanggaoju on 2018/6/19.
//? Copyright ? 2018年 ZhangGaoju. All rights reserved.
//
/* 字體 */
#ifndef Font_h
#define Font_h
/* 平方-細體 */
#define kFont_Regular(font) [UIFont fontWithName:@"PingFangSC-Regular"size:font*scale_width]
/* 平方-粗體 */
#define kFont_Medium(font)? [UIFont fontWithName:@"PingFangSC-Medium"size:font*scale_width]
/* 系統(tǒng)字體-超細字體*/
#define kFont_UltraLight (font)? ? ? ? ? ? [UIFont systemFontOfSize:font weight:UIFontWeightUltraLight]
/* 系統(tǒng)字體-纖細字體*/
#define Font_Thin(font)? ? ? ? ? ? [UIFont systemFontOfSize:font weight:UIFontWeightThin]
/* 系統(tǒng)字體-亮字體*/
#define Font_Light(font)? ? ? ? ? ? [UIFont systemFontOfSize:font weight:UIFontWeightLight]
/* 系統(tǒng)字體-常規(guī)字體*/
#define kFont_sRegular (font)? ? ? ? ? ? [UIFont systemFontOfSize:font weight:UIFontWeightRegular]
/*? 介于Regular和Semibold之間*/
#define Font_sMedium(font)? ? ? ? ? ? [UIFont systemFontOfSize:font weight:UIFontWeightMedium]
/* 系統(tǒng)字體-半粗字體*/
#define Font_Semibold(font)? ? ? ? ? ? [UIFont systemFontOfSize:font weight:UIFontWeightSemibold]
/* 系統(tǒng)字體-加粗字體*/
#define kFont_Bold (font)? ? ? ? ? ? [UIFont systemFontOfSize:font weight:UIFontWeightBold]
/*? 介于Bold和Black之間*/
#define Font_Heavy(font)? ? ? ? ? ? [UIFont systemFontOfSize:font weight:UIFontWeightHeavy]
/* 系統(tǒng)字體-最粗字體*/
#define Font_Black(font)? ? ? ? ? ? [UIFont systemFontOfSize:font weight:UIFontWeightBlack]
/*
?UIFontWeightUltraLight? - 超細字體
?UIFontWeightThin? - 纖細字體
?UIFontWeightLight? - 亮字體
?UIFontWeightRegular? - 常規(guī)字體
?UIFontWeightMedium? - 介于Regular和Semibold之間
?UIFontWeightSemibold? - 半粗字體
?UIFontWeightBold? - 加粗字體
?UIFontWeightHeavy? - 介于Bold和Black之間
?UIFontWeightBlack? - 最粗字體(理解)
?*/
#endif /* Font_h */