我希望我的UISearchBar
的scopeButtons始终保持可见状态,但即使我设置了searchBar.showsScopeBar = YES'
,如果我开始按钮仍会被动画关闭搜索然后取消它。
有什么办法可以阻止在取消搜索时将scopeBar设置为动画?
答案 0 :(得分:0)
由于仅在UISearchController
处于活动状态时才使用范围栏,因此我对问题的处理方式有所不同。
我立即激活UISearchController
。
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
// Immediately activating the searchController keeps scope bar permanently visible
searchController.isActive = true
// Tapping the cancel button triggers this method, which quickly toggles the scope bar
// But the cancel button isn't needed anyway, so hiding it solves the problem
searchController.searchBar.showsCancelButton = false
}
但是现在UISearchController
始终处于活动状态,默认情况下UINavigationBar
是隐藏的,这可能不是您想要的。为了解决这个问题,我防止它隐藏在viewDidLoad
searchController.hidesNavigationBarDuringPresentation = false
这种方法意味着我根本不需要使用showsScopeBar
,因为在UISearchController
处于活动状态时它始终可见。
答案 1 :(得分:-1)
如果有人感兴趣,以下委托方法就可以了。
- (BOOL)searchBarShouldEndEditing:(UISearchBar *)searchBar
{
[searchBar setShowsScopeBar:YES];
return YES;
}