搜索处于活动状态时,UISearchController searchBar向下移动

时间:2018-01-04 12:55:18

标签: swift uisearchcontroller

我提供了视图控制器,其中包含表视图。 我在表头视图中添加了UISearchController。当搜索栏处于活动状态时,它向下移动一些像素。我已经尝试了所有选项,没有一个正在运行。

在我的代码下面,在表格视图中添加搜索控制器

searchController = UISearchController.init(searchResultsController: nil)
searchController?.searchResultsUpdater = self   
searchController?.searchBar.sizeToFit()   
searchController?.searchBar.delegate = self   
searchController?.searchBar.searchBarStyle = UISearchBarStyle.default   
searchController?.dimsBackgroundDuringPresentation = false   
searchController?.hidesNavigationBarDuringPresentation = false   
searchController?.definesPresentationContext = true  
searchController?.searchBar.placeholder = "Search"   
self.otlTableView?.tableHeaderView = searchController?.searchBar  

我还附上截图。

Searchcontroller1

Searchcontroller2

0 个答案:

没有答案