그리고 아래와 같이 간단하게 코드를 짜서 가능한 font 목록을 구할 수도 있습니다.
// List all fonts on iPhone
NSArray *familyNames = [[NSArray alloc] initWithArray:[UIFont familyNames]];
NSArray *fontNames;
NSInteger indFamily, indFont;
for (indFamily=0; indFamily<[familyNames count]; ++indFamily)
{
NSLog(@"Family name: %@", [familyNames objectAtIndex:indFamily]);
fontNames = [[NSArray alloc] initWithArray:
[UIFont fontNamesForFamilyName:
[familyNames objectAtIndex:indFamily]]];
for (indFont=0; indFont<[fontNames count]; ++indFont)
{
NSLog(@" Font name: %@", [fontNames objectAtIndex:indFont]);
}
[fontNames release];
}
[familyNames release];
== Available Fonts in iPhone/iPod ==
Font Family: American Typewriter
Font: AmericanTypewriter
Font: AmericanTypewriter-BoldFont Family: AppleGothic
Font: AppleGothicFont Family: Arial
Font: ArialMT
Font: Arial-BoldMT
Font: Arial-BoldItalicMT
Font: Arial-ItalicMTFont Family: Arial Rounded MT Bold
Font: ArialRoundedMTBoldFont Family: Arial Unicode MS
Font: ArialUnicodeMSFont Family: Courier
Font: Courier
Font: Courier-BoldOblique
Font: Courier-Oblique
Font: Courier-BoldFont Family: Courier New
Font: CourierNewPS-BoldMT
Font: CourierNewPS-ItalicMT
Font: CourierNewPS-BoldItalicMT
Font: CourierNewPSMTFont Family: DB LCD Temp
Font: DBLCDTempBlackFont Family: Georgia
Font: Georgia-Bold
Font: Georgia
Font: Georgia-BoldItalic
Font: Georgia-ItalicFont Family: Helvetica
Font: Helvetica-Oblique
Font: Helvetica-BoldOblique
Font: Helvetica
Font: Helvetica-BoldFont Family: Helvetica Neue
Font: HelveticaNeue
Font: HelveticaNeue-BoldFont Family: Hiragino Kaku Gothic **** W3
Font: HiraKakuProN-W3Font Family: Hiragino Kaku Gothic **** W6
Font: HiraKakuProN-W6Font Family: Marker Felt
Font: MarkerFelt-ThinFont Family: STHeiti J
Font: STHeitiJ-Medium
Font: STHeitiJ-LightFont Family: STHeiti K
Font: STHeitiK-Medium
Font: STHeitiK-LightFont Family: STHeiti SC
Font: STHeitiSC-Medium
Font: STHeitiSC-LightFont Family: STHeiti TC
Font: STHeitiTC-Light
Font: STHeitiTC-MediumFont Family: Times New Roman
Font: TimesNewRomanPSMT
Font: TimesNewRomanPS-BoldMT
Font: TimesNewRomanPS-BoldItalicMT
Font: TimesNewRomanPS-ItalicMTFont Family: Trebuchet MS
Font: TrebuchetMS-Italic
Font: TrebuchetMS
Font: Trebuchet-BoldItalic
Font: TrebuchetMS-BoldFont Family: Verdana
Font: Verdana-Bold
Font: Verdana-BoldItalic
Font: Verdana
Font: Verdana-ItalicFont Family: Zapfino
Font: Zapfino
Related posts:
- 일본에서 아이폰 3GS (새로 발표된)가 휴대폰 판매 1위가 되었다고 하는데… 어느 기준에서 휴대폰 판매 1위인지는 모르겠으나.. 암튼 그 동안...
- [아이폰] 배터리 사용량을 추적할 수 있는 Battery Tracer가 앱 스토어에 릴리즈 되었습니다. 아래 설명과 같이 Battery 사용량을 추적하고 사용 시간을 예측할 수...
- [iPhone] 정말 멋진 앱입니다. 미래에서 온 것 같은 New York Nearest Subway Augmented Reality App for iPhone 3GS from acrossair Video를 이용해서 이런 앱도 만들 수 있군요. 대단!!! ...
- [iPhone] Jailbreak 없이 자신의 iPhone/iPod의 파일 시스템에 접근하고 파일을 가져오기 제목만으로도 흥미로울 것입니다. iPod 내의 library를 하나 가져와야해서 찾아낸 방법입니다....
- [iPhone] 앱 아이콘의 상단부가 shining (빛 나는) 되는 효과 없애기!! – Remove Shine / Gloss Effect on iPhone Icon 최근 어떤 앱들은 아이팟 (아이폰)에서 아이콘의 상단 부가 빛나는 효과가...
Related posts brought to you by Yet Another Related Posts Plugin.
