VARUN ISAC
VARUN ISAC

Reputation: 443

iPad simulator font installation

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

Answers (2)

Sergey Kuryanov
Sergey Kuryanov

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

Kalpit Gajera
Kalpit Gajera

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

Upvotes: 1

Related Questions