// ADDING FONTS TO PROJECT // // 1. Add font to project // 2. Make sure in project file, the fonts are in "Copy Bundle Resources" under "Build Phases" // 3. Add font file names to Info.plist "Fonts provided by Application" // 4. Use code below to print the name used by UIFont; it might not be what you expect. for (NSString *familyName in [UIFont familyNames]) { NSLog(@"%@", familyName); for (NSString *name in [UIFont fontNamesForFamilyName:familyName]) { NSLog(@" %@", name); } }