ios - navcontroller - 将导航项设置为图像
<p><p>我想将导航 Controller 栏按钮项设置为图像。</p>
<p>我已阅读以下内容 - <a href="https://stackoverflow.com/questions/328352/add-image-to-a-navigationitems-title" rel="noreferrer noopener nofollow">Add image to a navigationItem's title</a> </p>
<p>我了解如何将其设置为图像。我实际上希望将其设置为设置 cog,在条形按钮项目中(如 cog 图标)。我之前在其他应用程序中看到过这种情况,我想知道是否有默认样式为此初始化,或者通常是否通过上述图像路由实现。 </p>
<p>如果上面是这样,有谁知道这种(某种)默认图像样式图标在哪里可用,或者我需要制作一个吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您是否尝试过使用 <code>UIBarButtonItem</code> 的 <code>initWithCustomView</code> 选项?示例代码如下所示。</p>
<pre><code>UIBarButtonItem *aButton = [ initWithCustomView:[ initWithImage:]];
</code></pre>
<p>另一种方法是,</p>
<pre><code>UIBarButtonItem *aButton = [ initWithImage: style:UIBarButtonItemStyleBordered target:self action:@selector(buttonTapped)];
</code></pre></p>
<p style="font-size: 20px;">关于ios - navcontroller - 将导航项设置为图像,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/12808992/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/12808992/
</a>
</p>
页:
[1]