UIFont+YOHO.h
1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//
// UIFont+YOHO.h
// YH_Mall
//
// Created by 张同海 on 15/5/29.
// Copyright (c) 2015年 YOHO. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <CoreText/CoreText.h>
@interface UIFont (YOHO)
/**
@brief 指定大小的系统细体字体
@param size 文字大小
@return 字体对象
@since 3.1
*/
+ (UIFont *)yh_lightSystemFontOfSize:(CGFloat)size;
/**
@brief 指定大小的黑体字体
@param size 文字大小
@return 字体对象
@since 3.1
*/
+ (UIFont *)yh_blackfaceFontOfSize:(CGFloat)size;
/**
@brief 指定大小的黑体字体
@param size 文字大小
@return 字体对象
@since 3.1
*/
+ (UIFont *)yh_mediumBlackfaceFontOfSize:(CGFloat)size;
/**
@brief 获取斜体字体
@param baseFont 字体对象
@param trait 字体属性
@return 字体对象
@since 3.1
*/
+ (UIFont *)yh_variationOfFont:(UIFont *)baseFont symbolicTraits:(CTFontSymbolicTraits)trait;
+ (UIFont *)yh_dinMediumFontWithSize:(CGFloat)size;
+ (UIFont *)yh_dinRegularFontWithSize:(CGFloat)size;
+ (UIFont *)fontOfLightWithSize:(CGFloat)fontSize;
+ (UIFont *)fontOfBoldWithSize:(CGFloat)fontSize;
@end