I have 3 .ttf files in an application for iPhone. They represent these 3 fonts:
- Gotham Rounded Book
- Gotham rounded medium
- Gotham rounded bold
I put all of them in my .plist, but only 2 will appear when I do this:
NSLog(@"%@",[UIFont fontNamesForFamilyName:@"Gotham Rounded"]);
This is what is logged:
"GothamRoundedMedium-Regular", "GothamRoundedBook-Regular"
What's going on here? Screenshots below.
source share