/ Published in: Objective C
Expand |
Embed | Plain Text
NSArray *fontNames; NSInteger indFamily, indFont; for (indFamily=0; indFamily<[familyNames count]; ++indFamily) { DEBUGLOG(@"Family name: %@", [familyNames objectAtIndex:indFamily]); [UIFont fontNamesForFamilyName: [familyNames objectAtIndex:indFamily]]]; for (indFont=0; indFont<[fontNames count]; ++indFont) { DEBUGLOG(@" Font name: %@", [fontNames objectAtIndex:indFont]); } [fontNames release]; } [familyNames release];
You need to login to post a comment.
