- Copy your font file into resources
- Add a key to your
Info.plist
file calledUIAppFonts. ("Fonts provided by application)
- Make this key an array
- For each font you have, enter the full name of your font file (including the extension) as items to the
UIAppFonts
array - Save
Info.plist
- Now in your application you can simply call
[UIFont fontWithName:@"CustomFontName" size:15]
to get the custom font to use with your UILabels and UITextViews, etc…