菜鸟教程小白 发表于 2022-12-12 18:06:07

ios - 我可以在不增加行高的情况下调整 NSAttributedString 中的基线吗?


                                            <p><p>在 San Francisco 字体中,如果括号围绕数字,括号会有点低。我正在制作的应用程序的一个示例,使用 <code>NSAttributedString</code>:</p>

<p> <a href="/image/Odc33.png" rel="noreferrer noopener nofollow"><img src="/image/Odc33.png" alt="example"/></a> </p>

<p>我想将括号的基线增加一两个像素,但是当我使用 <code>NSBaselineOffsetAttributeName</code> 属性这样做时,行高也会增加两个像素。文本在 <code>UITextView</code> 内,我真的不希望改变行高。有什么我可以做的吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>一种可能的方法是使用 <code>NSParagraphAttributeName</code> 强制设置最大行高。</p>

<pre><code>NSMutableParagraphStyle *style = [ init];
;

NSDictionary *parenthesisAttributes = @{NSParagraphStyleAttributeName:style,
                                        NSBaselineOffsetAttributeName:@(baselineWanted),
                                        NSFontAttributeName:sameFontWithBiggerPointSize};
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 我可以在不增加行高的情况下调整 NSAttributedString 中的基线吗?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/34727921/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/34727921/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 我可以在不增加行高的情况下调整 NSAttributedString 中的基线吗?