UIFont+Custom.m 431 Bytes
//
//  UIFont+Custom.m
//  SAO
//
//  Created by Xummer on 14-3-20.
//  Copyright (c) 2014年 Xummer. All rights reserved.
//

#import "UIFont+Custom.h"

@implementation UIFont (Custom)

+ (UIFont *)customFontOfSize:(CGFloat)fontSize {
    return [UIFont fontWithName:@"SAOUITT-Regular" size:fontSize];
}

+ (UIFont *)boldCustomFontOfSize:(CGFloat)fontSize {
    return [UIFont fontWithName:@"SAOUITT-Bold" size:fontSize];
}

@end