31 lines
602 B
C
31 lines
602 B
C
|
|
//
|
||
|
|
// BJConst.h
|
||
|
|
// MoHuanXingYu
|
||
|
|
//
|
||
|
|
// Created by ybb on 2021/4/14.
|
||
|
|
// Copyright © 2021 MoHuanXingYu. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <Foundation/Foundation.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface BJConst : NSObject
|
||
|
|
|
||
|
|
extern UIFont* YBFont(NSInteger size);
|
||
|
|
extern UIFont* YBBoldFont(NSInteger size);
|
||
|
|
extern UIFont* YBSystemFont(NSInteger size);
|
||
|
|
extern UIFont* YBMediumFont(NSInteger size);
|
||
|
|
extern UIFont* YBBoldSystemFont(NSInteger size);
|
||
|
|
extern UIFont* YBFONT_PF(NSInteger size);
|
||
|
|
|
||
|
|
|
||
|
|
extern CGFloat YBFontW(UIFont *font,NSString *str);
|
||
|
|
|
||
|
|
|
||
|
|
extern UIWindow * MainWindow();
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|