UISearchController 在点击时展开屏幕
UISearchController expands off screen when tapped
我们在使用 UISearchController 作为导航栏中的项目时遇到了一个奇怪的问题。它被设置为左栏按钮项,当用户点击开始搜索时,搜索栏会扩展到屏幕右侧。
下面是创建 UISearchController 的代码:
resultSearchController = ({
let controller = UISearchController(searchResultsController: nil)
controller.searchResultsUpdater = self
controller.dimsBackgroundDuringPresentation = false
controller.hidesNavigationBarDuringPresentation = false
controller.searchBar.delegate = self
controller.delegate = self
controller.searchBar.frame = CGRect(x: 0, y: 0, width: 266, height: 44.0)
let searchBarView = UIView(frame: controller.searchBar.frame)
searchBarView.addSubview(controller.searchBar)
controller.searchBar.backgroundImage = UIImage(named: "searchBarBG")
controller.searchBar.barTintColor = .white
controller.searchBar.subviews[0].subviews.flatMap(){ [=10=] as? UITextField }.first?.tintColor = Constants.Colors.Red
navigationItem.leftBarButtonItem = UIBarButtonItem(customView: searchBarView)
return controller
})()
首次加载屏幕时,看起来像 this.
点击搜索栏后,它会变成 this.
我不知道是什么原因造成的。经过大量搜索,我尝试更改 self.definesPresentationContext = false;
和 self.extendedLayoutIncludesOpaqueBars = true
以及调整情节提要中的类似复选框。有什么建议吗?
编辑: 这似乎只发生在 iOS 11。在 10.3 中,搜索栏实际上缩小了一点以容纳取消按钮,但最终占据了同样数量的 space.
如果您不需要 UISearchBarController
的附加功能,您可以直接使用 UISearchBar
,它具有更可预测的调整大小行为:
let searchBar = UISearchBar(frame: CGRect(x: 0, y: 0, width: 200, height: 20))
searchBar.delegate = self
navigationItem.leftBarButtonItem = UIBarButtonItem(customView: searchBar)
请注意,如果您使用内置取消按钮或其他类似功能,则必须在委托方法中手动处理它们。
我最终通过覆盖 didPresentSearchController
和 didDismissSearchController
方法作为 UISearchControllerDelegate
的一部分来解决这个问题。
extension ContactUsViewController: UISearchControllerDelegate {
func didPresentSearchController(_ searchController: UISearchController)
{
searchController.searchBar.frame = CGRect(x: 0, y: 0, width: 266, height: 44.0)
}
func didDismissSearchController(_ searchController: UISearchController)
{
searchController.searchBar.frame = CGRect(x: 0, y: 0, width: 266, height: 44.0)
}
}
我们在使用 UISearchController 作为导航栏中的项目时遇到了一个奇怪的问题。它被设置为左栏按钮项,当用户点击开始搜索时,搜索栏会扩展到屏幕右侧。
下面是创建 UISearchController 的代码:
resultSearchController = ({
let controller = UISearchController(searchResultsController: nil)
controller.searchResultsUpdater = self
controller.dimsBackgroundDuringPresentation = false
controller.hidesNavigationBarDuringPresentation = false
controller.searchBar.delegate = self
controller.delegate = self
controller.searchBar.frame = CGRect(x: 0, y: 0, width: 266, height: 44.0)
let searchBarView = UIView(frame: controller.searchBar.frame)
searchBarView.addSubview(controller.searchBar)
controller.searchBar.backgroundImage = UIImage(named: "searchBarBG")
controller.searchBar.barTintColor = .white
controller.searchBar.subviews[0].subviews.flatMap(){ [=10=] as? UITextField }.first?.tintColor = Constants.Colors.Red
navigationItem.leftBarButtonItem = UIBarButtonItem(customView: searchBarView)
return controller
})()
首次加载屏幕时,看起来像 this.
点击搜索栏后,它会变成 this.
我不知道是什么原因造成的。经过大量搜索,我尝试更改 self.definesPresentationContext = false;
和 self.extendedLayoutIncludesOpaqueBars = true
以及调整情节提要中的类似复选框。有什么建议吗?
编辑: 这似乎只发生在 iOS 11。在 10.3 中,搜索栏实际上缩小了一点以容纳取消按钮,但最终占据了同样数量的 space.
如果您不需要 UISearchBarController
的附加功能,您可以直接使用 UISearchBar
,它具有更可预测的调整大小行为:
let searchBar = UISearchBar(frame: CGRect(x: 0, y: 0, width: 200, height: 20))
searchBar.delegate = self
navigationItem.leftBarButtonItem = UIBarButtonItem(customView: searchBar)
请注意,如果您使用内置取消按钮或其他类似功能,则必须在委托方法中手动处理它们。
我最终通过覆盖 didPresentSearchController
和 didDismissSearchController
方法作为 UISearchControllerDelegate
的一部分来解决这个问题。
extension ContactUsViewController: UISearchControllerDelegate {
func didPresentSearchController(_ searchController: UISearchController)
{
searchController.searchBar.frame = CGRect(x: 0, y: 0, width: 266, height: 44.0)
}
func didDismissSearchController(_ searchController: UISearchController)
{
searchController.searchBar.frame = CGRect(x: 0, y: 0, width: 266, height: 44.0)
}
}