Question

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?

Was it helpful?

Solution

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 enter image description here

OTHER TIPS

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top