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

ios - 如何获取 "Star"(收藏夹)UIBarButtonItem 的图像?


                                            <p><p>我是 iOS 新手。我希望在我的应用程序的顶部菜单上放置一个“星”按钮。有没有办法让 iOS 中内置的星形按钮类似于 <code>UIBarButtonSystemItemAdd</code></p>

<p>如果没有,我怎样才能获得类似于 Apple 在 iOS 中使用的常见收藏夹星的图像? </p>

<p>与此类似:</p>

<p> <img src="/image/VnUun.png" alt="enter image description here"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>一个简单快捷的方法是使用 <a href="https://github.com/PrideChung/FontAwesomeKit" rel="noreferrer noopener nofollow">FontawesomeKit</a> .<br/>
您可以像这样轻松创建按钮:</p>

<pre><code>FAKFontAwesome *icon = ;
];
UIBarButtonItem *favButton = [ initWithImage:
                                                         style:UIBarButtonItemStylePlain
                                                      target:self
                                                      action:@selector(doSomething:)];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何获取&#34;Star&#34;(收藏夹)UIBarButtonItem 的图像?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22815882/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22815882/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何获取 &#34;Star&#34;(收藏夹)UIBarButtonItem 的图像?