0

I want to know which all fonts are currently supported by iphone sdk.

wolverine
  • 2,967
  • 5
  • 31
  • 35
  • 1
    possible duplicate of [What fonts iPhone application support.?](http://stackoverflow.com/questions/249251/what-fonts-iphone-application-support) – Brad Larson Jun 18 '10 at 14:41

4 Answers4

2

Just use this code snippet in your application.

NSArray *familyNames = [[NSArray alloc] initWithArray:[UIFont familyNames]];
NSLog(@"Supported fonts : %@",familyNames);

And check your log. You can find all the fonts which are currently supported iOS.

J. Steen
  • 15,470
  • 15
  • 56
  • 63
jpd
  • 381
  • 1
  • 2
  • 13
0

http://www.michaelcritz.com/2010/04/02/fonts-for-ipad-iphone/

Quentin
  • 914,110
  • 126
  • 1,211
  • 1,335
0

http://daringfireball.net/misc/2007/07/iphone-osx-fonts

VOX
  • 2,883
  • 2
  • 33
  • 43
0

http://blog.lightvoid.net/2008/11/02/iphone-uifont-list/

Philippe Leybaert
  • 168,566
  • 31
  • 210
  • 223