I'm trying to add a custom font to my app but it doesn't appear when the app is running:
After that, when I run the app:
for (NSString* family in [UIFont familyNames])
{
NSLog(@"FONT FAMILY: %@", family);
for (NSString* name in [UIFont fontNamesForFamilyName: family])
{
NSLog(@"FONT: %@", name);
}
}
All fonts except the JetBrains ones are available. What am I missing?
Found the answer.
Changed the "Fonts provided by application" key in the .plist file with "UIAppFonts" and the font started to work