UITableViewController始终显示搜索栏

时间:2012-06-27 13:32:45

标签: ios uitableview search

在iOS 5中,是否有办法永远不会隐藏UITableViewController中的搜索栏?

2 个答案:

答案 0 :(得分:7)

我不建议使用UITableViewControllerUIViewController上面有一个UITableVIewUISearchBar而不是标题就可以完成工作。从更个人的角度来看,我不会推荐UITableViewController任何东西,我发现它真正提供的东西太严格了。如果由于某种原因我使用UITableViewController并且客户要求我在屏幕上添加新元素,我基本上搞砸了。

答案 1 :(得分:0)

我知道这是一个老问题,但我找到了一个解决方案,它适用于经典的UITableViewController和UTSearchDisplayController。

我为searchBar 1st创建了一个容器视图,然后将搜索栏放入其中。容器不得剪切到边界。在此之后,您可以更改搜索栏相对于容器的位置。这样一个问题就是搜索栏不能处理用户交互。所以我们需要使用我们自己的容器来获取低于其真实框架的事件。

我们的容器类:

@interface _SearchContainerView : UIView
@end

@implementation _SearchContainerView
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event {
    if (self.subviews.count > 0) {
        UISearchBar *searchBar = (UISearchBar *) self.subviews[0];
        CGRect f = searchBar.frame;
        f = CGRectMake(0, 0, f.size.width, f.origin.y + f.size.height);
        if (CGRectContainsPoint(f, point)) return YES;
    }
    return [super pointInside:point withEvent:event];
}
@end

如果您以编程方式创建searchBar,可以使用以下代码设置它:

- (void)setSearchEnabled:(BOOL)searchEnabled {
    if (searchBar == nil && searchEnabled) {
        searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, self.tableView.bounds.size.width, 44)];
        searchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:searchBar
                                                                contentsController:self];
        searchBar.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin | UIViewAutoresizingFlexibleTopMargin
                                     | UIViewAutoresizingFlexibleRightMargin | UIViewAutoresizingFlexibleWidth;
        searchDisplayController.delegate = self;
        searchDisplayController.searchResultsDataSource = self;

        searchContainer = [[_SearchContainerView alloc] initWithFrame:searchBar.frame];
        [container addSubview:searchBar];
        container.clipsToBounds = NO;

        self.tableView.tableHeaderView = container;

    }  else {
        [searchBar removeFromSuperview];
        self.tableView.tableHeaderView = nil;
        searchBar = nil;
        searchDisplayController = nil;
        searchContainer = nil;
    }
}

然后你可以根据tableView的滚动位置改变位置:

-(void)scrollViewDidScroll:(UIScrollView *)scrollView {
    if (searchBar == nil || searchDisplayController.isActive) return;
    CGRect b = self.tableView.bounds;
    // Position the searchbar to the top of the tableview
    searchBar.frame = CGRectMake(0, b.origin.y, b.size.width, 44);
}

最后一部分是在搜索后恢复所有内容:

- (void)searchDisplayControllerDidEndSearch:(UISearchDisplayController *)controller {
    // Restore header alpha
    searchContainer.alpha = 1.0;
    // Place the searchbar back to the tableview
    [searchBar removeFromSuperview];
    [searchContainer addSubview:searchBar];
    // Refresh position and redraw
    CGPoint co = self.tableView.contentOffset;
    [self.tableView setContentOffset:CGPointZero animated:NO];
    [self.tableView setContentOffset:co animated:NO];
}