UISearchBar背景中的额外空间导致UISearchBar与状态栏重叠

时间:2016-11-22 02:09:48

标签: ios iphone swift

这个问题基本上是,UISearchBar在激活时与状态栏重叠。我知道已经发布了许多类似的问题,我已经尝试了所有方法,但我仍然无法解决它。

初始化屏幕时,搜索栏显示在正确的位置。当我向下滚动屏幕时,您可以看到搜索栏的背景比我从iPhone上的邮件应用程序获得的背景更高。

When screen is scrolled down a bit

搜索栏背景中额外空格的高度与状态栏高度相同。我相信这是导致以下问题的原因,即当搜索栏被激活时,它与状态栏重叠。但是当取消搜索时,它会被放回正常位置,如第一张图片所示。

Search bar overlaps with status bar when activated.

这是我的代码。

全球变种:

    let searchController = UISearchController(searchResultsController: nil)

在viewDidLoad中:

    self.extendedLayoutIncludesOpaqueBars = true
    self.definesPresentationContext = true
    self.navigationController?.navigationBar.isHidden = false
    self.originalFrame = self.tabBarController?.tabBar.frame
    searchController.hidesNavigationBarDuringPresentation = true
    searchController.searchBar.barTintColor = Settings.tealColor
    searchController.searchResultsUpdater = self
    searchController.dimsBackgroundDuringPresentation = false
    searchController.searchBar.scopeButtonTitles = ["All", "Pre-order", "Delivery", "Carry-out", "Dine-in", "History"]
    searchController.searchBar.delegate = self
    searchController.searchBar.sizeToFit()
    restaurantTableView.tableHeaderView = searchController.searchBar

您的任何帮助将不胜感激。我已经解决了这个问题两天了。感谢

1 个答案:

答案 0 :(得分:0)

有趣的是,在我发布了我已经花了两天时间的问题后30分钟,我自己想出来了。罪魁祸首是我从自定义导航栏切换到内置导航栏后未删除的以下代码块。

func position(for bar: UIBarPositioning) -> UIBarPosition {
    return UIBarPosition.topAttached
}

无论如何,感谢您的关注。希望有同样问题的人可以从中受益。