HLLFont 0.1

HLLFont 0.1

测试测试
语言语言 Obj-CObjective C
许可证 MIT
发布最后发布2014年12月

未确认 维护。



  • 作者
  • could_hll

设置 UIFont 风格(粗体、斜体、轻柔、倾斜和组合)。

  • HLLFont 使用分类扩展 UIFont。
  • 使用一个方法来设置风格
  • 使用组合样式,如 (BoldOblique)
  • 如果找不到字体,返回 nil。
+ (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]];