11-02-2008, 12:03 PM
#1 (permalink )
OniMobi
Join Date: Oct 2008
Location: Oxford, UK
Posts: 46
List of UIFonts available
Couldn't find a list of what fonts are available in UIFont, so I printed them to the console and put them on my blog
Dave Mitchell » iPhone UIFont List
Quote:
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
Hope this is useful to others too
11-02-2008, 12:34 PM
#2 (permalink )
New Member
Join Date: Aug 2008
Posts: 361
Thanks man...
Very useful indeed.
11-02-2008, 06:03 PM
#3 (permalink )
New Member
Join Date: Sep 2008
Posts: 1,431
11-03-2008, 05:04 AM
#4 (permalink )
Registered Member
Join Date: Jul 2008
Location: Slovenia, EU
Posts: 264
This one is the best, with font pictures
11-03-2008, 12:00 PM
#5 (permalink )
New Member
Join Date: Oct 2008
Location: St. Louis
Posts: 44
There are also 2 free applications in the AppStore which will display the installed fonts: Fonts & FontViewer.
06-12-2009, 02:46 AM
#6 (permalink )
Registered Member
Join Date: Jul 2008
Location: Hyderabad,India
Age: 25
Posts: 233
But Strange yar....If I use font family Arial in Bold for UILabel it is not visible one of my mac????
06-08-2010, 05:52 AM
#7 (permalink )
Registered Member
Join Date: May 2010
Posts: 63
cool!
Thanks dude , its real useful
02-18-2011, 10:42 PM
#8 (permalink )
Registered Member
Join Date: Jan 2011
Posts: 146
I know this is an old thread, but here are the OP's listed fonts as const strings you can throw in a header and use. The ones I've tried have worked, some names may be off, but I trust the OP!
Code:
#define kFontAmericanTypewriter @"AmericanTypewriter"
#define kFontAmericanTypewriterBold @"AmericanTypewriter-Bold"
#define kFontAppleGothic @"AppleGothic"
#define kFontArialMT @"ArialMT"
#define kFontArialBoldMT @"Arial-BoldMT"
#define kFontArialBoldItalicMT @"Arial-BoldItalicMT"
#define kFontArialItalicMT @"Arial-ItalicMT"
#define kFontArialRoundedMTBold @"ArialRoundedMTBold"
#define kFontArialUnicodeMS @"ArialUnicodeMS"
#define kFontCourier @"Courier"
#define kFontCourierBoldOblique @"Courier-BoldOblique"
#define kFontCourierOblique @"Courier-Oblique"
#define kFontCourierBold @"Courier-Bold"
#define kFontCourierNewPSBoldMT @"CourierNewPS-BoldMT"
#define kFontCourierNewPSItalicMT @"CourierNewPS-ItalicMT"
#define kFontCourierNewPSBoldItalicMT @"CourierNewPS-BoldItalicMT"
#define kFontCourierNewPSMT @"CourierNewPSMT"
#define kFontDBLCDTempBlack @"DBLCDTempBlack"
#define kFontGeorgiaBold @"Georgia-Bold"
#define kFontGeorgia @"Georgia"
#define kFontGeorgiaBoldItalic @"Georgia-BoldItalic"
#define kFontGeorgiaItalic @"Georgia-Italic"
#define kFontHelveticaOblique @"Helvetica-Oblique"
#define kFontHelveticaBoldOblique @"Helvetica-BoldOblique"
#define kFontHelvetica @"Helvetica"
#define kFontHelveticaBold @"Helvetica-Bold"
#define kFontHelveticaNeue @"HelveticaNeue"
#define kFontHelveticaNeueBold @"HelveticaNeue-Bold"
#define kFontHiraKakuProNW3 @"HiraKakuProN-W3"
#define kFontHiraKakuProNW6 @"HiraKakuProN-W6"
#define kFontMarkerFeltThin @"MarkerFelt-Thin"
#define kFontSTHeitiJMedium @"STHeitiJ-Medium"
#define kFontSTHeitiJLight @"STHeitiJ-Light"
#define kFontSTHeitiKMedium @"STHeitiK-Medium"
#define kFontSTHeitiKLight @"STHeitiK-Light"
#define kFontSTHeitiSCMedium @"STHeitiSC-Medium"
#define kFontSTHeitiSCLight @"STHeitiSC-Light"
#define kFontSTHeitiTCLight @"STHeitiTC-Light"
#define kFontSTHeitiTCMedium @"STHeitiTC-Medium"
#define kFontTimesNewRomanPSMT @"TimesNewRomanPSMT"
#define kFontTimesNewRomanPSBoldMT @"TimesNewRomanPS-BoldMT"
#define kFontTimesNewRomanPSBoldItalicMT @"TimesNewRomanPS-BoldItalicMT"
#define kFontTimesNewRomanPSItalicMT @"TimesNewRomanPS-ItalicMT"
#define kFontTrebuchetMSItalic @"TrebuchetMS-Italic"
#define kFontTrebuchetMS @"TrebuchetMS"
#define kFontTrebuchetBoldItalic @"Trebuchet-BoldItalic"
#define kFontTrebuchetMSBold @"TrebuchetMS-Bold"
#define kFontVerdanaBold @"Verdana-Bold"
#define kFontVerdanaBoldItalic @"Verdana-BoldItalic"
#define kFontVerdana @"Verdana"
#define kFontVerdanaItalic @"Verdana-Italic"
#define kFontZapfino @"Zapfino"
__________________
Paper Weight Diet Tracker
02-24-2011, 03:02 PM
#9 (permalink )
ACMT
Join Date: Jun 2010
Location: Chandlers Ford, UK
Posts: 39
Hello all.
is there a way to import fonts to xcode?
__________________
To follow the path:
look to the master, follow the master, walk with the master, see through the master, become the master.
katsogiannisc@gmail.com
Larissa FC
02-24-2011, 04:39 PM
#10 (permalink )
Registered Candy Bar
Join Date: Nov 2010
Location: San Jose, CA
Posts: 269
Quote:
Originally Posted by
katsogiannis
Hello all.
is there a way to import fonts to xcode?
@katsogiannis:
1)add desired font to project (I believe, must be .tff or .otf);
2)go to info.plist; create a UIAppFonts key;
3)This key's value should be set to "array";
4)add font file names to this array (i.e., if font name is handwrite.tff, add this to the UIAppFonts key);
5)set font for object in app just like you would set any other font:
Code:
aLabel.font = [UIFont fontWithName:@"handwrite" size:12];
Thread Tools
Display Modes
Linear Mode
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
» Advertisements
» Online Users: 508
24 members and 484 guests
2WeeksToGo , aaronov , alfred1000351 , Claricepqzx , Dattee , DaveDee , Delgernon , Domele , Evich , flamingliquid , gpfsupply36s , Harizonalsri , homasen , ilmman , loved1943 , lukeirvin , mistergreen2011 , Ranahingts , sha , shiv@globussoft.com , Silus , Tauseef , TelTikky , walter_yaron
Most users ever online was 1,187, 10-11-2011 at 08:09 AM.
» Stats
Members: 157,869
Threads: 88,917
Posts: 379,300
Top Poster: BrianSlick (7,072)
Welcome to our newest member, homasen