I followed the steps outlined in various locations using the UIAppFonts property list key. I\'m using the Aller Light font. I\'ve added it as a resource, added
for (NSString *name in [UIFont familyNames]) {
NSLog(@"Family name : %@", name);
for (NSString *font in [UIFont fontNamesForFamilyName:name]) {
NSLog(@"Font name : %@", font);
}
}