美文网首页UI设计
iOS 字体的那些事儿

iOS 字体的那些事儿

作者: comst | 来源:发表于2016-03-22 19:27 被阅读746次

    iOS 字体的那些事儿

    iOS原生字体展示

    在label中选择字体的font,并把font由system改成custom后,就能在family中看到iOS提供的各种特殊字体。示例代码把系统的原生字体遍历出来展示。
    用到的主要api是:[UIfont familyNames]返回font的family name,然后再通过[UIFont fontNamesForFamilyName:familyName]; 获得该family name 下的所有字体。
    相信现在大部分的软件项目都是这么写的
    label.font = [UIFont systemFontofSize:fontSize];
    如果不想使用默认的系统字体可以使用一下方法赋值
    UIFont *customFont = [UIFont fontWithName:@"customFontName"];

    使用第三方字体

    一般只要字体格式是ttf的,iOS都支持内嵌。
    具体步骤:

    1. 将字体文件(一般是ttf格式)拖入项目中。
    2. 修改info.plist文件,加入Fonts provided by application配置,后面填上拖进来的项目名称。
      这样以后就可以使用自己添加进来的字体了。操作如下图。
    动态字体

    动态字体源于iOS7引入的一个文本渲染框架TextKit。主要的作用就是可以系统自设大小。你的app使用了动态字体后,你在设置中修字体大小的时候,你的app中的字体大小也会发生改变。
    动态字体提供了几种Style可以选择:

    • UIFontTextStyleHeadline
    • UIFontTextStyleBody
    • UIFontTextStyleSubHeadline
    • UIFontTextStyleFootnote
    • UIFontTextStyleCaption1
    • UIFontTextStyleCaption2
      可以通过下列代码使用动态字体:
      UIFont *font = [UIFont preferedFontForTextStyle:UIFontTextStyleBody];
    字体描述

    字体描述符就是你可以把一个你不知道详情的font样式临时存起来修改或赋值给别人使用。例如你使用的动态字体后,你可能只知道现在的text style,但是纤细的font familyname, fontname都不知道,在这种情况下,如果你想把label的字体变成斜体或粗体,只能借助字体描述符了。

    // ------取出当前正文的字体样式
    UIFontDescriptor *bodyFontDesciptor = [UIFontDescriptor preferredFontDescriptorWithTextStyle:UIFontTextStyleBody];
    // ------把样式改为斜体
    UIFontDescriptor *italicFontDescriptor = [bodyFontDesciptor fontDescriptorWithSymbolicTraits:UIFontDescriptorTraitItalic];
    // ------赋值给另一个label。
    self.titleLabel.font = [UIFont fontWithDescriptor:italicFontDescriptor size:0.0];
    

    关于样式一共有四中可选:

    • UIFontDescriptorTraitItalic
    • UIFontDescriptorTraitExpand
    • UIFontDescriptorTraitCondensed
    • UIFontDescriptorTraitBold
      字体描述符还有一个通过详细属性字典设置一个label的样式,代码如下:
      NSDictionary *desDic = @{
      UIFontDescriptorNameAttribute:@"FZuanSu",
      UIFontDescriptorSizeAttribute:@24,
      };
      UIFontDescriptor *fontDes = [UIFontDescriptor fontDescriptorWithFontAttributes:desDic];
      self.fontLabel.font = [UIFont fontWithDescriptor:fontDes size:0];
      效果如下图


    相关文章

      网友评论

        本文标题:iOS 字体的那些事儿

        本文链接:https://www.haomeiwen.com/subject/vmdllttx.html