菜鸟教程小白 发表于 2022-12-13 06:23:11

ios - 将 UIButton 的标题垂直居中,用于比宽度长的单词


                                            <p><p>我想实现一个 <code>UIButton</code>,这样无论文本的长度如何,标题都会在内部居中显示。</p>

<p>我面临的问题是<strong>按钮的宽度</strong>和<strong>字体大小需要是固定值</strong>,因为它们需要与其余部分保持一致用户界面细节。而且<strong>我也不能截断文本</strong>。 </p>

<p>我可以<strong>拆分单词</strong>,但<strong>只有当单词不适合</strong>标题的宽度时。 </p>

<p>目前它适用于 1 行和 2 行文本(带空格),但 <strong>当标题包含一个不带空格的长单词时,它仅将第一行居中</strong>(请参阅所附图片)。</p>

<p> <img src="/image/O84rq.png" alt="enter image description here"/>
<img src="/image/1dUpc.png" alt="enter image description here"/> </p>

<p>我想我想做这样的事情:</p>

<pre><code>if (button.currentTitle.length &gt; (buttonWidth/characterWidth)) { //2-line title buttons
    // Do something special to fix the problem
}
</code></pre>

<p>但我已经尝试设置所有这些,但没有一个起作用:</p>

<pre><code>;
;
;
button.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
</code></pre>

<p>对保持 <code>titleLabel</code> 垂直居中的任何想法/建议?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以<strong>用字符包装标题</strong>,设置按钮的<a href="https://developer.apple.com/library/mac/documentation/Cocoa/Reference/ApplicationKit/Classes/NSParagraphStyle_Class/index.html#//apple_ref/c/tdef/NSLineBreakMode" rel="noreferrer noopener nofollow">line break mode</a>到 <code>NSLineBreakByCharWrapping</code> (默认情况下它在单词边界处换行),仅当它包含不适合的单词时。</strong></p>

<pre><code>if (button.currentTitle.length &gt; (buttonWidth/characterWidth)) { //2-line title buttons

    // Check if title contains long words
    NSArray *words = ;
    for (NSString *word in words) {
      if (word.length &gt; (buttonWidth/characterWidth)) {
            // Set the line break mode to char wrapping
            button.titleLabel.lineBreakMode = NSLineBreakByCharWrapping;
            break; // No need to continue :-)
      }
    }

}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 将 UIButton 的标题垂直居中,用于比宽度长的单词,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/29614597/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/29614597/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 将 UIButton 的标题垂直居中,用于比宽度长的单词