菜鸟教程小白 发表于 2022-12-12 19:24:03

ios - 向 uisearchbar 添加刷新 Logo


                                            <p><p>是否可以在 iPad 的 uisearchbar 中添加类似 safari 中的刷新 Logo ?
喜欢下图吗?</p>

<p>我有一个 uisearchbarcontroller 和一个 uitableview。想知道是否可以像刷新一样添加箭头。可以添加搜索结果和书签。</p>

<p> <img src="/image/i5XyY.png" alt="refresh icon"/> </p>

<p>谢谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>是的,您可以..您需要将清除按钮替换为自定义按钮,该按钮将执行您的刷新操作..这是执行此操作的代码</p>

<pre><code>UISearchBar *searchBar = yourSearchBar;
UITextField *searchtextfield = ;
UIButton *cButton = ;
cButton.frame = CGRectMake(0, 0, 20 , 20);
cButton.backgroundColor = ;
forState:UIControlStateNormal];//refresh image.
cButton.contentMode = UIViewContentModeScaleToFill;
;//This is the custom event(refresh)
;
;
</code></pre>

<p>享受:)</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 向 uisearchbar 添加刷新 Logo ,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/9324077/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/9324077/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 向 uisearchbar 添加刷新 Logo