菜鸟教程小白 发表于 2022-12-12 12:11:43

ios - 如何更改 UIToolbar 按钮的标题颜色?


                                            <p><p>有什么简单的方法可以改变 UIToolBar 按钮标题的标题颜色,就像我们在 UIBarButtonItem 中使用的那样:</p>

<pre><code>[
    setTitleTextAttributes:
      ,
            UITextAttributeTextColor,nil]
    forState:UIControlStateNormal];
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>UITextAttributeTextColor</code> 在 <strong>iOS >= 7.0</strong> 中被<strong>弃用</strong>。</p>

<p>使用 <code>setTintColor:(UIColor *)</code> 来改变按钮标题的颜色。</p>

<p>为<code>UIToolBar</code>设置默认标题颜色:</p>

<pre><code>];
</code></pre>

<p>或设置单个<code>UIBarButtonItem</code>的标题颜色:</p>

<pre><code>];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何更改 UIToolbar 按钮的标题颜色?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/17486264/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/17486264/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何更改 UIToolbar 按钮的标题颜色?