菜鸟教程小白 发表于 2022-12-13 11:31:39

ios:自定义字体的字距调整


                                            <p><p>我可以在 ios 中为 UILable 和 UIButton 的自定义字体设置字距吗? </p>

<p>以下方法无效。字距调整适用于系统字体,但不适用于自定义字体。有人可以帮忙解决问题吗?</p>

<pre><code>NSMutableAttributedString *attributedString =
   [ initWithString:text attributes:
       @{
          NSFontAttributeName : ,
          NSForegroundColorAttributeName :
   }];

   [attributedString addAttribute:NSKernAttributeName
       value:
       range:NSMakeRange(0, )];
   ;
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你可以试试这个。这可能会有所帮助。</p>

<pre><code>NSMutableAttributedString *attributedString;
attributedString = [ initWithString:@&#34;Please test this text&#34;];
;
;
</code></pre>

<p>更多解决方案请查看以下链接</p>

<p> <a href="https://stackoverflow.com/questions/7370013/how-to-set-kerning-in-iphone-uilabel" rel="noreferrer noopener nofollow">How to set kerning in iPhone UILabel</a> </p>

<p>我希望这会有所帮助。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios:自定义字体的字距调整,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32004205/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32004205/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios:自定义字体的字距调整