1234567891011121314151617181920 |
- //
- // UIFont+Temperature.m
- // Temperature
- //
- // Created by 姓二名哈字富贵儿 on 2023/8/16.
- //
- #import "UIFont+Temperature.h"
- @implementation UIFont (Temperature)
- + (instancetype)pingFangSCMediumOfSize:(CGFloat)size {
- return [UIFont fontWithName:@"PingFangSC-Medium" size:size];
- }
- + (instancetype)pingFangSCRegularOfSize:(CGFloat)size {
- return [UIFont fontWithName:@"PingFangSC-Regular" size:size];
- }
- @end
|