Showing posts with label UIFont. Show all posts
Showing posts with label UIFont. Show all posts

Friday, June 24, 2011

Show list of font using for loop iphone sdk

for(NSString *familyName in [UIFont familyNames]) {
     for(NSString *fontName in [UIFont fontNamesForFamilyName:familyName]) {
     NSLog(@"%@", fontName);
   }
}