Question

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

OTHER TIPS

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top