菜鸟教程小白 发表于 2022-12-13 06:45:49

ios - UISearchBardelegate 函数没有响应


                                            <p><p>UISearchBar 委托(delegate)函数仅对 iOS7 iPhone5 没有响应。我的代码中有两个 .xib 文件,一个用于 3.5 英寸屏幕,一个用于 4 英寸屏幕。
对于 3.5 英寸屏幕,它工作正常,但对于 4 英寸屏幕,委托(delegate)函数没有被调用。
你能指导我吗?</p>

<pre><code>- (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar {
    ;
    ;
}

- (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar {
    ;
    searchBar.text=@&#34;&#34;;

    ;
    ;
}

- (void)searchBarTextDidBeginEditing:(UISearchBar *)searchBar
</code></pre>

<p>调用了这个函数,但是 <code>searchBarCancelButtonClicked</code> 不起作用。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我有一些建议给你:</p>

<p>1) 首先检查你的 iPhone5 的 .xib 文件是否连接到 UISearchBar 的委托(delegate)?</p>

<p>2) 您可以为 3.5 英寸和 4 英寸使用一个 .xib 文件,并通过自动调整大小使此 .xib 与 iPhone 4 和 5 兼容。 </p>

<p>希望这些点可以解决您的问题。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - UISearchBardelegate 函数没有响应,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/21983541/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/21983541/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - UISearchBardelegate 函数没有响应