Skip to content

Instantly share code, notes, and snippets.

@atomkirk
Created May 29, 2013 01:50
Show Gist options
  • Save atomkirk/5667445 to your computer and use it in GitHub Desktop.
Save atomkirk/5667445 to your computer and use it in GitHub Desktop.
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