我有一个奇怪的要求,或者至少是我以前从未做过的事情……我有一个 UITableView ,该表的标题是一个 UISearchBar 。如果您点击该搜索栏,则会出现“搜索显示 Controller ”并让您搜索......但现在我需要删除该搜索栏并从按钮中调用“搜索显示 Controller ”。
问题是,如果我在调用(从按钮)时删除 SearchBar:
[self.searchDisplayController setActive:YES animated:YES]
我在 View 顶部看不到 UISearchBar。
我不知道如何解决这个问题...我已经尝试过:
self.tableView.tableHeaderView = nil 在 viewDidLoad 中,当触摸按钮时,我再次将 UISearchBar 设置为表头......它看起来很丑,动画一点也不流畅。
- 隐藏搜索栏并在按下按钮时显示。 (我在 tableview 的标题中得到一个空白空间)并且动画非常糟糕,因为
UISearchBar 首先显示在标题中并且它被移动到 View 的顶部......<
我们非常欢迎任何帮助!!
谢谢!
Best Answer-推荐答案 strong>
我知道您已经尝试过,但我们就是这样做的,而且效果很好:
我们将 UISearchBar 添加到 View 中(不是表格 View )。话虽这么说,如果您使用的是 UITableViewController,则不能这样做。您必须将 tableView 添加到 UIViewController。然后我们通过一个 Outlet 将它链接到 Controller,然后在 viewDidLoad 中将其设置为隐藏:
self.searchBar.hidden = YES;
然后创建一个选择器来再次显示 searchBar:
- (IBAction)searchid)sender
{
self.searchBar.hidden = NO;
[self.searchBar becomeFirstResponder];
[self.searchDisplayController setActive:YES animated:YES];
}
希望对您有所帮助。
关于ios - 如何使用按钮显示 "Search Display Controller",我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/22537210/
|