zoukankan      html  css  js  c++  java
  • iOS FONT字体名

    下面这段代码可以查看ios中可用的字体,具体那些字体长什么样,可以查看字体册工具。
    
    
    NSArray *familyArray = [UIFont familyNames];
    
    
    for (id family in familyArray) {
    
    
    printf(“%s
    ”,[family cStringUsingEncoding:NSUTF8StringEncoding]);
    
    
    NSArray *fontArray = [UIFont fontNamesForFamilyName:family];
    
    
    for (id font in fontArray) {
    
    
    printf(”   %s
    ”,[font cStringUsingEncoding:NSUTF8StringEncoding]);
    
    
    }
    }

    //以下是font:

    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
  • 相关阅读:
    ADO.NET访问Access2007的数据库 IErrorInfo.GetDescription failed with E_FAIL(0x80004005)
    Git工程实践
    来用java类模拟tensorflow工作流程
    Java异常处理之throw和声明throws·12
    Java异常之finally和多重捕获·11
    linux和windows如何查询自己本地出去的公网ip地址
    CentOS 6 EOL切换源
    P4782 【模板】2-SAT 问题
    P3834 【模板】可持久化线段树 2(主席树)
    P2671 [NOIP2015 普及组] 求和
  • 原文地址:https://www.cnblogs.com/niit-soft-518/p/4501260.html
Copyright © 2011-2022 走看看