菜鸟教程小白 发表于 2022-12-13 03:58:11

iOS 8 UISearchController 的 searchBar 重叠 tableVIew


                                            <p><p>我正在练习使用 iOS 8 的新功能 - UISearchController 来显示我的 tableView 和结果。但是奇怪的事情发生了。看起来 searchBar 是透明的。</p>

<p>是的,searchBar 与 tableView 重叠。我在 SO 中搜索了很多,但没有任何帮助。</p>

<p> <img src="/image/pDJQO.png" alt="enter image description here"/> </p>

<p>我在 <code>viewDidLoad</code></p> 中的实现

<pre><code>self.myTableView = [ initWithFrame:self.view.bounds style:UITableViewStylePlain];
_myTableView.delegate = self;
_myTableView.dataSource = self;
;

self.mySearchController = [ initWithSearchResultsController:nil];
_mySearchController.searchResultsUpdater = self;
_mySearchController.dimsBackgroundDuringPresentation = NO;
_mySearchController.hidesBottomBarWhenPushed = YES;
_mySearchController.hidesNavigationBarDuringPresentation = YES;
_mySearchController.searchBar.searchBarStyle = UISearchBarStyleMinimal;
;

self.myTableView.tableHeaderView = self.mySearchController.searchBar;
</code></pre>

<p>我错过了什么重要的事情吗?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这是因为你设置了 <code>_mySearchController.searchBar.searchBarStyle = UISearchBarStyleMinimal</code>。根据苹果的 <a href="https://developer.apple.com/library/ios/documentation/UIKit/Reference/UISearchBar_Class/#//apple_ref/c/tdef/UISearchBarStyle" rel="noreferrer noopener nofollow">documentation</a> :</p>

<blockquote>
<p>UISearchBarStyleMinimal - The search bar has no background, and the search field is translucent.</p>
</blockquote>

<p>尝试删除该行代码或将其设置为 <code>UISearchBarStyleDefault</code>。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iOS 8 UISearchController 的 searchBar 重叠 tableVIew,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/27445371/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/27445371/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iOS 8 UISearchController 的 searchBar 重叠 tableVIew