菜鸟教程小白 发表于 2022-12-12 22:29:28

ios - UISearchBarDelegate 和 textFieldShouldClear 替代


                                            <p><p>UITextFieldDelegate 有一个方法 <code>- (BOOL)textFieldShouldClear:(UITextField *)textField</code> 当用户点击那个小 <code>x</code> 图标时会调用它。</p>

<p>我找不到 <code>UISearchBar</code> 或 <code>UISearchBarDelegate</code> 的类似内容。是否有另一种方法来确定该按钮/图标是否已在 <code>UISearchBar</code> 内被点击?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>你可以使用:</p>

<pre><code>searchBar:textDidChange:
</code></pre>

<p>根据<a href="http://developer.apple.com/library/ios/#DOCUMENTATION/UIKit/Reference/UISearchBarDelegate_Protocol/Reference/Reference.html" rel="noreferrer noopener nofollow">Reference</a>当按下 X 清除字段时也会调用。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UISearchBarDelegate 和 textFieldShouldClear 替代,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/12011986/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/12011986/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UISearchBarDelegate 和 textFieldShouldClear 替代