您的位置:首页 > 产品设计 > UI/UE

UIFont的字体调研

2015-08-14 07:45 661 查看
**![#pragma mark – UIFont]

*注意 : 字体中除了默认以及黑体加粗和黑体对汉字有作用外其余的均不起作用,对 英文 ‘&’ 阿拉伯数字 都有作用!

/*

* 字体名如下:

* 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

*/

/* 字变小了 */


// label.font = [UIFont preferredFontForTextStyle:@”“];

/* 字体以及大小 */

// label.font = [UIFont fontWithName:@”HiraKakuProN-W3” size:25];

/* 文本大小 */

// label.font = [UIFont systemFontOfSize:20];

/* 文本比例缩小 */

// label.font = [UIFont boldSystemFontOfSize:30];

/* 倾斜文本 */

// label.font = [UIFont italicSystemFontOfSize:25];

// NSArray *arr = [NSArray array];

// arr = [UIFont familyNames];

// arr = [UIFont fontNamesForFamilyName:@”HiraKakuProN-W3”];

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: