13 lines
275 B
C
13 lines
275 B
C
![]() |
// Copyright 2015-present 650 Industries. All rights reserved.
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
static const char *EXFontAssocKey = "EXFont";
|
||
|
|
||
|
@interface EXFont : NSObject
|
||
|
|
||
|
- (instancetype)initWithCGFont:(CGFontRef)cgFont;
|
||
|
- (UIFont *)UIFontWithSize:(CGFloat)fsize;
|
||
|
|
||
|
@end
|