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?
            Asked
            
        
        
            Active
            
        
            Viewed 488 times
        
    0
            
            
         
    
    
        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 Answers
2
            
            
        Yes you can use the custom font in iOS app follow the steps:
NSLog(@"Font names: %@",[UIFont fontNamesForFamilyName:@"Futura"]);
[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
- 
                    
- 
                    You can download the font from here. http://www.fontpalace.com/font-download/Futura-Heavy/ – Vinay Jain Nov 28 '13 at 07:47
- 
                    
- 
                    I have uploaded the font file to my dropbox shared folder, you can download it from there. https://dl.dropboxusercontent.com/u/75143596/futura_heavy.ttf – Vinay Jain Nov 28 '13 at 09:24
- 
                    let us [continue this discussion in chat](http://chat.stackoverflow.com/rooms/42106/discussion-between-parcs-and-dilip) – Vinay Jain Nov 28 '13 at 10:01