菜鸟教程小白 发表于 2022-12-13 11:35:48

ios - 在旧金山使用 fontWithSize API


                                            <p><p>iOS 9 中的新 San Francisco 字体通过调整跟踪以及在 SF Display 和 SF Text 之间动态切换,针对将要使用的大小进行了优化。在 WWDCsession#804 中指出,开发人员不应通过尝试使用 <code>fontWithName</code> 初始化 <code>UIFont</code> 来使用 San Francisco,例如:</p>

<pre><code>UIFont *originalFont = ;
UIFont *newFont = ;
</code></pre>

<p>这是因为在使用 <code>fontWithName</code> API 时,系统无法针对新大小优化字体。</p>

<p>建议从原始字体中获取 <code>UIFontDescriptor</code> 并使用新字体创建新字体,如下所示:</p>

<pre><code>UIFont *originalFont = ;
UIFont *newFont = ;
</code></pre>

<p>但是,他们没有提及以下是否允许优化:</p>

<pre><code>UIFont *originalFont = ;
UIFont *newFont = ;
</code></pre>

<p>我的问题是,<code>fontWithSize</code> API 的行为是否类似于 <code>fontWithName</code> API 或 <code>fontWithDescriptor</code> API - 它是否会产生优化的字体新尺寸还是没有?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我可以确认 <code>fontWithSize</code> 确实以新大小创建了优化的字体。</p>

<pre><code>Printing description of originalFont:
&lt;UICTFont: 0x7f8d9ba85340&gt; font-family: &#34;.SFUIText-Regular&#34;; font-weight: normal; font-style: normal; font-size: 11.00pt

Printing description of newFont:
&lt;UICTFont: 0x7f8d9ba7fe70&gt; font-family: &#34;.SFUIDisplay-Regular&#34;; font-weight: normal; font-style: normal; font-size: 44.00pt
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在旧金山使用 fontWithSize API,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32426341/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32426341/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在旧金山使用 fontWithSize API