I've already seen this post:
http://stackoverflow.com/questions/360751/can-i-embed-a-custom-font-in-an-iphone-application
which is helpful, but I'd love to simply load the font via:
UIFont* font = [UIFont fontWithName:@"Harrowprint" size:20];
Some people have reported this possible but it's not working for me. Can someone confirm how to bundle a custom font with an iphone app?
Also, in the aforementioned post, one answer notes: The "name" of the font is not necessarily the filename.
How do I determine the "name" of the font that would be recognized by UIFont? It's possible i'm not using the correct name.