0

In my application i want to use Futura Heavy BT font but as i checked the supported font on this page for iOS6 and iOS7 and Futura Heavy BT so is there any way to use this font or i have to use any alternative?

Dilip Manek
  • 9,095
  • 5
  • 44
  • 56
  • You can use custom fonts, see this [post][1]. [1]: http://stackoverflow.com/questions/15984937/adding-custom-fonts-to-ios-app-finding-their-real-names – Vinay Jain Nov 28 '13 at 07:36
  • you have font files? see the answer http://stackoverflow.com/questions/14355985/swanky-and-moo-moo-font-is-not-working-in-ios/14356123#14356123 – amar Nov 28 '13 at 07:36
  • Please be aware that you need to have the permission to re-distribute the custom font you include with your application, that may be included with a license you get if you purchase the font, or if the font is public domain that is not an issue. I'm not sure Futura Heavy BT is a free font though. – Kendall Helmstetter Gelner Nov 28 '13 at 08:31

2 Answers2

2

Yes you can use the custom font in iOS app follow the steps:

  • Download the font .ttf etc.
  • Copy it in your project.
  • Goto info.plist and add new property than search for "Fonts provided by application" and add the font names.
  • Than goto your viewcontroller and
  • NSLog(@"Font names: %@",[UIFont fontNamesForFamilyName:@"Futura"]);

  • From console copy the font name and use it.
  • [UIFont fontWithName:fontname size:15.0f];
    
    Muhammad Zeeshan
    • 2,441
    • 22
    • 33
    1

    You have to add custom fonts if its not available in the list that Apple provides. A very good tutorial to learn how to use custom fonts in iOS.

    Vinay Jain
    • 2,644
    • 3
    • 26
    • 44