设置 UIFont 风格(粗体、斜体、轻柔、倾斜和组合)。
+ (UIFont*)fontWithFont:(UIFont*)font style:(NSString*)style.
注意:如果你的项目没有使用ARC,你必须将编译器标志 -fobjc-arc
添加到 UIFont+HLLFont.m
中的目标设置 > 编译阶段 > 编译源。
HLLFont
文件夹拖入你的项目。UIFont+HLLFont.h
(见 /HLLFontDemo
中的示例 Xcode 项目)
font=[UIFont fontWithFont:font style:UIFONT_BOLD];
_例如:设置粗体和倾斜的组合样式
font=[UIFont fontWithFont:font style:[UIFONT_BOLD stringByAppendingString:UIFONT_OBLIQUE]];