| 123456789101112131415161718192021222324252627282930 |
- //
- // UIFont+Ext.h
- // UniversalApp
- //
- // Created by bugu on 2020/3/21.
- // Copyright © 2020 voidcat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface UIFont (Ext)
- + (instancetype)bg_mediumFont17;
- + (instancetype)bg_mediumFont16;
- + (instancetype)bg_mediumFont15;
- + (instancetype)bg_mediumFont14;
- + (instancetype)bg_mediumFont13;
- + (instancetype)bg_mediumFont11;
- + (UIFont*)mediumFont:(CGFloat)size;
- @end
- NS_ASSUME_NONNULL_END
|