1. Add the font file to the project. I recommend creating a Fonts group in the Resources group.

  2. Add a new entry in the app’s info.plist with the key “Fonts provided by application” (UIAppFonts), then add the filename (name and extension) of the font file to the array.

  3. Find out the name of the font. This can be done by opening the font file on your Mac and checking the title on the Font Book window. You can also find the name by using familyNames and fontNamesForFamilyName: UIFont methods.

  4. Use the font. It will work just like the standard fonts available on iOS devices.

 

+ Recent posts