do personal fonts carry over?
if i have a font that I made and use it in my app, will it uploaded with my开发者_如何学JAVA binary etc and display when i run it on my iphone?
If it's in your bundle, it'll go with your app. Using it though is another story. The iPhone doesn't support custom fonts out of the box. You have to write a wrapper on UILabel or whatever to use it. That, or get an open source one.
If you want information on loading your custom fonts, check out this question: Can I embed a custom font in an iPhone application?
The ultimate answer is in the app bundle you build. Locate the bundle (it has file name extension "app") in the Finder, right-click it and select "Show Package Contents". Whatever is there gets into the IPA package distributed to your customers through the App Store.
With regard to fonts included in your app, see benwong's comment. You should add the font files to the Xcode project and add all the font names under the key UIAppFonts (aka "Fonts provided by application") to the Info.plist.
精彩评论