iphone隐藏UISearchDisplayController结果?
Posted
技术标签:
【中文标题】iphone隐藏UISearchDisplayController结果?【英文标题】:iphone hide UISearchDisplayController results? 【发布时间】:2010-09-06 02:15:07 【问题描述】:我目前有一个 UISearchBar 和 UISearchDisplayController 实现为:
- (void) viewDidLoad
videoList = [[NSMutableArray alloc]init];
//Add the search bar
aSearchBar = [[UISearchBar alloc] initWithFrame:CGRectZero];
[aSearchBar sizeToFit];
aSearchBar.delegate = self;
aSearchBar.placeholder = @"Search YouTube...";
self.tableView.tableHeaderView = aSearchBar;
searchDC = [[UISearchDisplayController alloc] initWithSearchBar:aSearchBar contentsController:self];
[self performSelector:@selector(setSearchDisplayController:) withObject:searchDC];
searchDC.delegate = self;
searchDC.searchResultsDataSource = self.tableView.dataSource;
searchDC.searchResultsDelegate = self.tableView.delegate;
[aSearchBar release];
[searchDC release];
当用户输入内容并点击搜索时,tableView 会出现在后台的 tableView 顶部。
有没有隐藏这个'searchResults tableView'? (我只想让后台表保存数据......它目前所做的)。
即有财产吗?例如searchDisplayController.tableView.visible=NO 还是类似的?
【问题讨论】:
【参考方案1】:但这不会关闭搜索界面(搜索栏和“取消”按钮)。下一个代码做到了:
[self.searchDisplayController setActive:NO animated:YES];
【讨论】:
【参考方案2】:searchDC.searchResultsTableView.hidden=YES;
【讨论】:
隐藏搜索结果表允许用户与底层(主)视图进行交互,并且该(主)视图不会“变暗”。【参考方案3】:[[UISearchBar alloc] initWithFrame:CGRectZero];
不要使用 CGRectZero self.searchBar = [[UISearchBar alloc]initWithFrame:CGRectMake(0, 0, self.table.frame.size.width, 44)];
试试看
【讨论】:
以上是关于iphone隐藏UISearchDisplayController结果?的主要内容,如果未能解决你的问题,请参考以下文章
iPhone - UINavigationItem - 隐藏后退按钮