Skip to content

Instantly share code, notes, and snippets.

@atomkirk
Created May 29, 2013 01:50
Embed
What would you like to do?
Custom Fonts on Mac

On iOS, to use custom fonts, you add them to your plist:

<key>UIAppFonts</key>
	<array>
		<string>GoodDog_New.otf</string>
		<string>ProximaNova-Bold.otf</string>
		<string>ProximaNova-Reg.otf</string>
	</array>

on Mac, you just add:

<key>ATSApplicationFontsPath</key>
  <string>.</string>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment