UIFont+LIVE.m 851 Bytes
//
//  UIFont+LIVE.m
//  yohoLive
//
//  Created by jhsonzhi on 16/8/9.
//  Copyright © 2016年 NewPower. All rights reserved.
//

#import "UIFont+LIVE.h"

@implementation UIFont (LIVE)
+ (UIFont *)fontOfLightWithSize:(CGFloat)fontSize
{
    UIFont *font = [UIFont fontWithName:@"PingFangSC-Light" size:fontSize];
    if (!font) {
        font = [UIFont systemFontOfSize:fontSize];
    }
    return font;
}

+ (UIFont *)fontOfBoldWithSize:(CGFloat)fontSize
{
    UIFont *font = [UIFont fontWithName:@"PingFangSC-Bold" size:fontSize];
    if (!font) {
        font = [UIFont boldSystemFontOfSize:fontSize];
    }
    return font;
}

+ (UIFont *)fontOfSCWithSize:(CGFloat)fontSize
{
    UIFont *font = [UIFont fontWithName:@"PingFangSC" size:fontSize];
    if (!font) {
        font = [UIFont systemFontOfSize:fontSize];
    }
    return font;
}

@end