//// UIFont+Custom.m// SAO//// Created by Xummer on 14-3-20.// Copyright (c) 2014年 Xummer. All rights reserved.//#import "UIFont+Custom.h"@implementationUIFont(Custom)+(UIFont*)customFontOfSize:(CGFloat)fontSize{return[UIFontfontWithName:@"SAOUITT-Regular"size:fontSize];}+(UIFont*)boldCustomFontOfSize:(CGFloat)fontSize{return[UIFontfontWithName:@"SAOUITT-Bold"size:fontSize];}@end