UISearchBar-更改范围而不灰显表格?

发布于 2024-08-25 05:09:10 字数 67 浏览 14 评论 0原文

如何允许范围更改而不使表格变灰、搜索字段成为第一响应者和键盘弹出窗口?

我只是想根据范围刷新显示的数据。

How can I allow a change in scope without having the table grey out, the search field become first responder and keyboard popup?

I simply want to refresh the data shown based on the scope.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甚是思念 2024-09-01 05:09:10

我通过以下方式实现了这一点:

@interface SearchViewController : UIViewController<UISearchBarDelegate, UISearchDisplayDelegate> {
    BOOL shouldBeginEditing;
}

@end  

@implementation SearchViewController

-(void)searchBar:(UISearchBar *)bar selectedScopeButtonIndexDidChange:(NSInteger)selectedScope
{
    shouldBeginEditing = NO;
}

-(BOOL)searchBarShouldBeginEditing:(UISearchBar *)bar
{   
    if (shouldBeginEditing)
    {
        return YES;
    }
    else
    {
        shouldBeginEditing = YES;
        return NO;
    }
}

@end

I achieved this with following:

@interface SearchViewController : UIViewController<UISearchBarDelegate, UISearchDisplayDelegate> {
    BOOL shouldBeginEditing;
}

@end  

@implementation SearchViewController

-(void)searchBar:(UISearchBar *)bar selectedScopeButtonIndexDidChange:(NSInteger)selectedScope
{
    shouldBeginEditing = NO;
}

-(BOOL)searchBarShouldBeginEditing:(UISearchBar *)bar
{   
    if (shouldBeginEditing)
    {
        return YES;
    }
    else
    {
        shouldBeginEditing = YES;
        return NO;
    }
}

@end
久夏青 2024-09-01 05:09:10

如果您要使用标准 UISearchBar 范围按钮更改范围,请覆盖 searchDisplayController:shouldReloadTableForSearchScope 方法在 UISearchDisplayDelegate 中,并让它执行您需要的任何操作。

If you are changing the scope using the standard UISearchBar scope buttons override the searchDisplayController:shouldReloadTableForSearchScope method in your UISearchDisplayDelegate and have it do whatever you need it to.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文