我是新的IOS程序员。我想构建一个与默认IOS应用(称为“电话”)非常相似的应用,对于该应用,我只关注已经实现了searchBar
的Contact。对于我的问题是,我想让用户在searchBar
上点击时视图变得不透明。
到目前为止我尝试过的 Here is detail of my output
这是我期望的Here is detail of my expectation.
此外,当用户单击该深色视图时,也应关闭键盘。
如何在用户向上滚动时使searchBar
保持导航栏不变?
感谢您的帮助<3
答案 0 :(得分:0)
您应该使用dimsBackgroundDuringPresentation
let searchController = UISearchController()
searchController.dimsBackgroundDuringPresentation = true
searchController.hidesNavigationBarDuringPresentation = false