我需要一个 UISearchBar above 一个 UITableView (即搜索栏不是表格 View 的一部分),以及什么我发现当搜索栏被激活时,它会移出屏幕。
我进行了相当多的搜索,但找不到解决方案,存在“屏幕外搜索栏”问题,但他们正在将搜索栏添加到表格的标题 View 并调整属性,如 definesPresentationContext 修复了它.
我的 View 层次结构:
VC 的观点
|— 顶 View
|— 分段控制
|— 搜索栏
|— 表格 View
看起来 UISearchController 期望搜索栏位于表格 View 内,并且总是移动表格 View 以便搜索栏移动到屏幕的最顶部。
任何人有同样的问题并找到了解决方案?
非常感谢!
Best Answer-推荐答案 strong>
// swift 5
//如果您使用的是 UISearch Controller ,那么只需将下面的行添加到您的
viewDidLoad() 它将解决问题。
override func viewDidLoad() {
super.viewDidLoad()
// fixes the search moving to next screen when its active
self.definesPresentationContext = true
}
关于ios - UISearchController 的 UISearchBar 在事件时移出屏幕,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/39608345/
|