Define_Font.h 1.91 KB
//
//  Define_Font.h
//  coffee-app-ios
//
//  Created by 钱鋆 on 15/8/10.
//  Copyright (c) 2015年 xn. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface Define_Font : NSObject

#pragma mark - 系统字体
#define FONT_S_8 [UIFont systemFontOfSize:8.0f]
#define FONT_S_10 [UIFont systemFontOfSize:10.0f]
#define FONT_S_11 [UIFont systemFontOfSize:11.0f]
#define FONT_S_12 [UIFont systemFontOfSize:12.0f]
#define FONT_S_13 [UIFont systemFontOfSize:13.0f]
#define FONT_S_14 [UIFont systemFontOfSize:14.0f]
#define FONT_S_15 [UIFont systemFontOfSize:15.0f]
#define FONT_S_16 [UIFont systemFontOfSize:16.0f]
#define FONT_S_17 [UIFont systemFontOfSize:17.0f]
#define FONT_S_18 [UIFont systemFontOfSize:18.0f]
#define FONT_S_20 [UIFont systemFontOfSize:20.0f]
#define FONT_S_21 [UIFont systemFontOfSize:21.0f]
#define FONT_S_22 [UIFont systemFontOfSize:22.0f]
#define FONT_S_23 [UIFont systemFontOfSize:23.0f]
#define FONT_S_24 [UIFont systemFontOfSize:24.0f]
#define FONT_S_25 [UIFont systemFontOfSize:25.0f]
#pragma mark - 系统字体(加粗)
#define FONT_SB_8 [UIFont boldSystemFontOfSize:8.0f]
#define FONT_SB_10 [UIFont boldSystemFontOfSize:10.0f]
#define FONT_SB_11 [UIFont boldSystemFontOfSize:11.0f]
#define FONT_SB_12 [UIFont boldSystemFontOfSize:12.0f]
#define FONT_SB_14 [UIFont boldSystemFontOfSize:14.0f]
#define FONT_SB_15 [UIFont boldSystemFontOfSize:15.0f]
#define FONT_SB_16 [UIFont boldSystemFontOfSize:16.0f]
#define FONT_SB_17 [UIFont boldSystemFontOfSize:17.0f]
#define FONT_SB_18 [UIFont boldSystemFontOfSize:18.0f]

// 微信一致化用
#define FONT_WX_40  [UIFont systemFontOfSize:40.0f]
#define FONT_WX_20  [UIFont systemFontOfSize:20.0f]
#define FONT_WX_18  [UIFont systemFontOfSize:18.0f]
#define FONT_WX_17  [UIFont systemFontOfSize:17.0f]
#define FONT_WX_14  [UIFont systemFontOfSize:14.0f]
#define FONT_WX_13  [UIFont systemFontOfSize:13.0f]
#define FONT_WX_11  [UIFont systemFontOfSize:11.0f]


@end