Reputation: 3027
I want to know which all fonts are currently supported by iphone sdk.
Upvotes: 0
Views: 1435
Reputation: 381
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.
Upvotes: 2
Reputation: 171774
http://blog.lightvoid.net/2008/11/02/iphone-uifont-list/
Upvotes: 0