How to use custom fonts in iPhone SDK? [duplicate] How to use custom fonts in iPhone SDK? [duplicate] ios ios

How to use custom fonts in iPhone SDK? [duplicate]


  1. Add your custom font into your project , i.e. Dragged the font file(CALIBRIZ_0.TTF) into XCode project.

  2. Edit Info.plist: Add a new entry with the key "Fonts provided byapplication".

  3. For each of your files, add the file name to this array

    enter image description here

  4. Opened the font in font book(double click on your font in finder) to see what the real filename is andI see this:

enter image description here

Now set font to your label

yourLabel.font = [UIFont fontWithName:@"Calibri" size:15];

Follow this to get more


I think you had not searched well.

How to add CUSTOM fonts:-Steps:-  1.  Add your custom font files into your project using XCode as a resource  2.  Add a key to your info.plist file called "Fonts provided by application".  3.  Make this key an array  4.  For each font you have, enter the full name of your font file (including the extension) as items to theUIAppFonts array  5.  Save info.plist  6.  Now call UIFont *fontCustom = [UIFont fontWithName:@"CustomFontName" size:12];  to get the custom fonts.

NOTE:- Make sure the fonts are in your Copy Bundle Resources.

For example:- If you want to use "Nexa Light" font in your app, then add "Nexa Light.otf" into your project and call in this way.

UIFont *fontCustom = [UIFont fontWithName:@"Nexa Light" size:14];lblName.font = fontCustom;


Use font name from .ttf file

and you can also find from this link

after add this font name with it's extension like (OpenScan.ttf) in to .plist file

enter image description here

After add this font to .plist file, you can use it by

[self.txtField setFont: [UIFont fontWithName:@"OpenSans" size:13]];

And for more information read my Answer Adding custom fonts to iOS app finding their real names.