I want to know which all fonts are currently supported by iphon开发者_如何学Pythone sdk.
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.
http://blog.lightvoid.net/2008/11/02/iphone-uifont-list/
http://www.michaelcritz.com/2010/04/02/fonts-for-ipad-iphone/
http://daringfireball.net/misc/2007/07/iphone-osx-fonts
精彩评论