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

ios - 在 UIBarButtonItem 标题中为字符串使用多种样式


                                            <p><p>如果想使用属性字符串来格式化字符串,使第一个单词具有不同于第二个单词的样式(例如字体)。因此我认为我可以使用 <code>NSMutableAttributedString</code>。现在我有了一个<code>UIBarButtonItem</code>,但是这里你只能设置标题和标题的文本属性。</p>

<p>我看到了 <a href="https://stackoverflow.com/a/19208670/426227" rel="noreferrer noopener nofollow">implementation</a> ,其中 <code>NSDictionary</code> 用于具有多个属性。这样做的缺点是您只能为整个字符串设置格式。我需要它作为字符串的一部分。</p>

<p><code>UIBarButtonItem</code>中的同一个标题字符串是否可以有多种样式?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您可以使用自定义 View 初始化 <code>UIBarButtonItem</code>。准备您的属性字符串,创建一个 <code>UILabel</code>,将其 <code>attributedText</code> 设置为准备好的字符串,然后使用标签初始化按钮。</p>

<p>类似这样的:</p>

<pre><code>UILabel *label = [ initWithFrame:CGRectMake(0, 0, 100, 24)];

NSAttributedString *strt = [ initWithString:@&#34;text&#34;
    attributes:@{
               NSForegroundColorAttributeName :
               }];
label.attributedText = strt;

self.navigationItem.leftBarButtonItem = [ initWithCustomView:label];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 UIBarButtonItem 标题中为字符串使用多种样式,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32435589/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32435589/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 UIBarButtonItem 标题中为字符串使用多种样式