- File: 自己定义一个文件名
- File Type:Category
- Class:UIFont
- 在.h文件中添加
+(UIFont *)systemFontOfSize:(CGFloat)fontSize;
//
// UIFont+Custom.h
//
// Created by 55 on 2019/11/7.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface UIFont (UIFontCustom)
+(UIFont *)systemFontOfSize:(CGFloat)fontSize;
@end
NS_ASSUME_NONNULL_END
- 在.m中实现systemFontOfSize方法
//
// UIFont+Custom.m
//
// Created by 55 on 2019/11/7.
//
#import "UIFont+Custom.h"
@implementation UIFont (UIFontCustom)
+(UIFont *)systemFontOfSize:(CGFloat)fontSize
{
return [UIFont fontWithName:@"AlibabaPuHuiTi-Medium" size:fontSize];
}
@end