Reputation: 443
How can I know "Helvetica Neue Lt Std" font is installed in my ipad 7.1 simulator. If it is not installed , how can i install it?
Upvotes: 1
Views: 100
Reputation: 6114
You can not install custom front to iOS device or simulator. Please correct me if I am wrong.
But you can use custom fonts in your app.
Upvotes: 0
Reputation: 2525
use this code and see console while debug you will get all the font family which is there in your ipad
NSLog(@"%@",[UIFont fontNamesForFamilyName:@"Helvetica LT"]);
if font is not there then you add font name in your plist file like displayed in attached screenshot and add font in your projects resource Directory
Upvotes: 1