美文网首页ios-需要掌握的知识点
iOS swift UIFont 字体名称大全,图解及使用方法

iOS swift UIFont 字体名称大全,图解及使用方法

作者: A_rcher34 | 来源:发表于2020-03-31 19:58 被阅读0次

    如何在项目中使用方法:

    numlable.font = UIFont.init(name: "AmericanTypewriter-Bold", size: 26) //设置字体样式
    

    1
    如何获取字体名称:

    NSArray *familyNames = [UIFont familyNames];
    for( NSString *familyName in familyNames ){
        NSLog(@"Family: %@",familyName);
        NSArray *fontNames = [UIFont fontNamesForFamilyName:familyName];
        for( NSString *fontName in fontNames ){
            NSLog(@"Font: %@",fontName);
        }
    } 
    

    具体字体如下:
    Font Family: American Typewriter
    Font: AmericanTypewriter
    Font: AmericanTypewriter-Bold

    Font Family: AppleGothic
    Font: AppleGothic

    Font Family: Arial
    Font: ArialMT
    Font: Arial-BoldMT
    Font: Arial-BoldItalicMT
    Font: Arial-ItalicMT

    Font Family: Arial Rounded MT Bold
    Font: ArialRoundedMTBold

    Font Family: Arial Unicode MS
    Font: ArialUnicodeMS

    Font Family: Courier
    Font: Courier
    Font: Courier-BoldOblique
    Font: Courier-Oblique
    Font: Courier-Bold

    Font Family: Courier New
    Font: CourierNewPS-BoldMT
    Font: CourierNewPS-ItalicMT
    Font: CourierNewPS-BoldItalicMT
    Font: CourierNewPSMT

    Font Family: DB LCD Temp
    Font: DBLCDTempBlack

    Font Family: Georgia
    Font: Georgia-Bold
    Font: Georgia
    Font: Georgia-BoldItalic
    Font: Georgia-Italic

    Font Family: Helvetica
    Font: Helvetica-Oblique
    Font: Helvetica-BoldOblique
    Font: Helvetica
    Font: Helvetica-Bold

    Font Family: Helvetica Neue
    Font: HelveticaNeue
    Font: HelveticaNeue-Bold

    Font Family: Hiragino Kaku Gothic ** W3
    Font: HiraKakuProN-W3

    Font Family: Hiragino Kaku Gothic ** W6
    Font: HiraKakuProN-W6

    Font Family: Marker Felt
    Font: MarkerFelt-Thin

    Font Family: STHeiti J
    Font: STHeitiJ-Medium
    Font: STHeitiJ-Light

    Font Family: STHeiti K
    Font: STHeitiK-Medium
    Font: STHeitiK-Light

    Font Family: STHeiti SC
    Font: STHeitiSC-Medium
    Font: STHeitiSC-Light

    Font Family: STHeiti TC
    Font: STHeitiTC-Light
    Font: STHeitiTC-Medium

    Font Family: Times New Roman
    Font: TimesNewRomanPSMT
    Font: TimesNewRomanPS-BoldMT
    Font: TimesNewRomanPS-BoldItalicMT
    Font: TimesNewRomanPS-ItalicMT

    Font Family: Trebuchet MS
    Font: TrebuchetMS-Italic
    Font: TrebuchetMS
    Font: Trebuchet-BoldItalic
    Font: TrebuchetMS-Bold

    Font Family: Verdana
    Font: Verdana-Bold
    Font: Verdana-BoldItalic
    Font: Verdana
    Font: Verdana-Italic

    Font Family: Zapfino
    Font: Zapfino

    图示:


    感谢51cto.com提供的图片

    参考文献

    相关文章

      网友评论

        本文标题:iOS swift UIFont 字体名称大全,图解及使用方法

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