SenticoSansDT - medium and thin, not downloadable in xcode

I tried to download the following fonts

SenticoSansDT - Light SenticoSansDT - Regular SenticoSansDT - Thin SenticoSansDT - Medium 

all font files with the extension .ttf

i added to Xcode and check the target. fonts added in the build phase, as well as info.plist. but I only see the Regular and Light font for inclusion. The tool does not appear in the Font Book, as well as in the fairy board

+6
source share
1 answer

Install the .ttf file on mac and use this code below to find the exact font name.

 NSArray *familyNames = [[NSArray alloc] initWithArray:[UIFont familyNames]]; NSArray *fontNames; NSInteger indFamily, indFont; NSInteger fontsCount = [familyNames count]; for (indFamily = 0; indFamily < fontsCount; ++indFamily) { NSLog (@"Family name: %@", [familyNames objectAtIndex:indFamily]); fontNames = [[NSArray alloc] initWithArray:[UIFont fontNamesForFamilyName:[familyNames objectAtIndex:indFamily]]]; for (indFont = 0; indFont < [fontNames count]; ++indFont) { NSLog (@"Font name: %@", [fontNames objectAtIndex:indFont]); } } 

Use the font name "SenticoSansDT Medium and Thin" printed in the journal.

+3
source

All Articles