UISearchBar - 如何在点击取消按钮时阻止取消scopeBar?

时间:2011-07-21 17:22:55

标签: ios uitableview uikit uisearchbar

我希望我的UISearchBar的scopeButtons始终保持可见状态,但即使我设置了searchBar.showsScopeBar = YES',如果我开始按钮仍会被动画关闭搜索然后取消它。

有什么办法可以阻止在取消搜索时将scopeBar设置为动画?

2 个答案:

答案 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;
}