Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <ul> <li>You <strong>can't</strong> change the global font in iOS.</li> <li>Some of this list are <strong>already "installed"</strong> and appear in <code>[UIFont familyNames]</code> (e.g. Apple SD Gothic Neo)</li> <li>Every iOS App is able to add custom fonts which aren't supported, yet (e.g. BiauKai)</li> <li>There are <strong>no</strong> API diffs from 5.1 to 6.0 in <code>UIFont.h</code></li> <li>There are <strong>no</strong> API diffs in <code>UIFont.h</code> since 4.0 (added lineHeight, deprecated leading).</li> </ul> <hr> <blockquote> <p>"Apps can also install the following [mostly Asian] fonts as necessary."</p> </blockquote> <p>Since we know every developer can use custom fonts it's absolutely no problem to add them or "install" them for your app.</p> <p>I'm pretty sure these are some requested fonts, which some guy at Apple wrote on this page to show that it's possible to use these fonts nevertheless even if they are not specially supported by iOS.</p> <hr> <p><em>I know this is no answer which is totally correct or totally wrong - it's based on the information I knew and I found on the web and makes it clear, that we probably never know the answer.</em></p> <hr> <p>To support a custom font add your font in a <code>.ttf</code> format to your project (<strong>and to your target</strong> - I forgot this more than once!) and add it to your <strong>Info.plist</strong>. Now it's possible to use it with <code>someLabel.font = [UIFont fontWithName:@"MySuperFont" size:100];</code></p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload