BBAUIKitMacro.h 667 Bytes
//
//  BBAUIKitMacro.h
//  BBAUIKit
//
//  Created by jilutao on 2018/4/20.
//  Copyright © 2018年 Baidu. All rights reserved.
//
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#endif
// 字体相关
#define SystemFontOfSize(fontSize)              [UIFont systemFontOfSize:(fontSize)]
#define BoldSystemFontOfSize(fontSize)          [UIFont boldSystemFontOfSize:(fontSize)]
#define STHeitiTCMediumFontOfSize(fontSize)     [UIFont fontWithName:@>STHeitiTC-Medium> size:(fontSize)]
#define ArialFontOfSize(fontSize)               [UIFont fontWithName:@>Arial> size:(fontSize)]
#define FontWithNameAndSize(fontName,fontSize)  [UIFont fontWithName:fontName size:(fontSize)]