6

I have gone through these SO posts:

Embed font in a mac bundle

Custom font in a Cocoa application

I tried exactly same (rechecked multiple times), but I am not able to add a custom font to my Mac App.

All details are shown in attached pictures.

Plist is updated: (Tried Fonts and Fonts/ both) enter image description here In App Bundle it's there in Fonts folder path: enter image description here

But my code is unable to find and read the font : enter image description here

Any help / pointing out my mistake is highly appreciated.

Community
  • 1
  • 1
Anoop Vaidya
  • 46,283
  • 15
  • 111
  • 140
  • 1
    Is 'PlanerReg' the font name or just the file name? – Aderstedt Aug 13 '14 at 07:50
  • @Aderstedt: Thanks for your comment, it helped me to figure out the issue. – Anoop Vaidya Aug 13 '14 at 08:34
  • @AnoopVaidya: I have successfully implemented the font in my app but if the font is not installed on user's mac then is it possible to check if the font is installed or not or automatically we can install the font from mac app? – Manthan Jul 02 '15 at 12:18
  • @Manthan: Why don't you ship the font with the bundle resource and load the font there? If you want to install your font in the OS itself, then its other story. – Anoop Vaidya Jul 03 '15 at 11:16
  • @AnoopVaidya: I have one query regrading sandboxing my app... Can you please guide me??? – Manthan Jul 24 '15 at 10:35
  • @Manthan: yes go ahead, if I can help you – Anoop Vaidya Jul 24 '15 at 12:08
  • @AnoopVaidya: Hi, you there??? – Manthan Jul 24 '15 at 12:44
  • Hi , I have the same issue. I have add some font file(ttf). And register the font in the info.plist file. I use [NSFontManager sharedFontManager] availableFonts] to enum the font but cannot find my custom font. – tbago Mar 27 '20 at 03:37

1 Answers1

0

Thanks for the comment Is 'PlanerReg' the font name or just the file name?

This helped me out to figure the issue.

Actually the font file name is PlanerReg, but the actual font name is Planer.

Now its working.

Anoop Vaidya
  • 46,283
  • 15
  • 111
  • 140