菜鸟教程小白 发表于 2022-12-13 03:52:15

ios - iOS 11 上 UITableView 中的 UISearchController 问题


                                            <p><p><strong>iOS 11</strong> 我在表的 headerview 上有一个 <code>UITableViewController</code> 和一个 <code>UISearchController</code>,使用以下代码:</p>

<pre><code>if(searchController == nil)
{
    searchController = [ initWithSearchResultsController:nil];
    searchController.dimsBackgroundDuringPresentation = false;
    searchController.searchResultsUpdater = self;
    searchController.searchBar.delegate = self;
    self.definesPresentationContext = NO;
    searchController.delegate = self;
}
self.tableView.tableHeaderView = searchController.searchBar;

;
</code></pre>

<p>当我运行应用程序时,我想要的行为完全适用于 <code>tableview</code>,行数超过设备屏幕的高度,但在 <code>tableview</code> 的情况下只有几行,搜索栏从导航栏下降了一点。</p>

<p> <a href="/image/So70h.png" rel="noreferrer noopener nofollow">When there are few cells on the tableview, the search bar drops down as in this picture</a> </p>

<p> <a href="/image/udwdi.png" rel="noreferrer noopener nofollow">When there are more cells on the tableview, the search bar doesn&#39;t drop down</a> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>在 iOS 11 上,带有 tableViewheader 的 UISearchController 的行为发生了变化,现在它是 navigationItem 的一部分,您不需要 tableView。因此,您必须检查 iOS >= 11 并执行以下操作</p>

<pre><code>if (@available(iOS 11.0, *)) {
    self.navigationItem.searchController = searchController;
// ToDo : dont forget to hide the tableView
// ...      
} else {
    self.tableView.tableHeaderView = searchController.searchBar;
    ;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - iOS 11 上 UITableView 中的 UISearchController 问题,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/48007690/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/48007690/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - iOS 11 上 UITableView 中的 UISearchController 问题