我有一个UIViewController,我想用serchBar显示一个tableview。就像那样简单:
//viewDidLoad
_tableView = [[UITableView alloc] initWithFrame:CGRectMake(0,
0,
SCREEN_WIDTH(),
SCREEN_HEIGHT())
style:UITableViewStylePlain];
_tableView.delegate = self;
_tableView.dataSource = self;
[self.view addSubview:_tableView];
// adding uisearch bar
searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
_tableView.tableHeaderView = searchBar;
//
searchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:searchBar contentsController:self];
searchDisplayController.delegate = self;
searchDisplayController.searchResultsDataSource = self;
当我在uisearch栏内单击以便动画开始并且看起来它有20px不需要的偏移时,会出现问题
答案 0 :(得分:15)
在故事板中,选择有问题的控制器,查看“属性”选项卡并尝试编辑这些设置:
我通过 unflagging 这些设置解决了类似的问题。
答案 1 :(得分:8)
我找到了造成这个问题的原因。当您将navigationBar.translucent设置为NO时,似乎动画会搞乱。如果你使navigationBar半透明,一切都应该工作正常,但这绝对不是一个理想的解决方案。我打算尝试找一个解决方法。
答案 2 :(得分:1)
UITableView *_tableView = [[UITableView alloc] initWithFrame:CGRectMake(0,
64,
self.view.frame.size.width,
self.view.frame.size.height)
style:UITableViewStylePlain];
_tableView.delegate = self;
_tableView.dataSource = self;
[self.view addSubview:_tableView];
// adding uisearch bar
UISearchBar* searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
_tableView.tableHeaderView = searchBar;
//
UISearchDisplayController* searchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:searchBar contentsController:self];
searchDisplayController.delegate = self;
searchDisplayController.searchResultsDataSource = self;
我只是用UINavigationcontroller来控制我的控制器,它的工作得很好..
答案 3 :(得分:1)
您可以通过继承UISearchDisplayController并添加以下内容来取消动画:
- (void)setActive:(BOOL)visible animated:(BOOL)animated
{
if(self.active == visible) return;
[self.searchContentsController.navigationController setNavigationBarHidden:YES animated:NO];
[super setActive:visible animated:animated];
[self.searchContentsController.navigationController setNavigationBarHidden:NO animated:NO];
if (visible) {
[self.searchBar becomeFirstResponder];
} else {
[self.searchBar resignFirstResponder];
}
}
答案 4 :(得分:1)
codyko给了我一个主意。这是因为导航栏没有半透明。所以我把它设置为半透明的这个视图控制器,当我离开时使用以下代码休息:
- (void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
self.navigationController.navigationBar.translucent = NO;
}
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
self.navigationController.navigationBar.translucent = YES;
}
现在,这个控制器上的导航栏略微褪色,所以我添加了UIView
与我后面的导航栏相同的颜色,使其看起来不透明。我知道它并不完美,但效果很好。
答案 5 :(得分:0)
为什么要以编程方式而不是在StoryBoard中创建搜索栏? 我目前正在使用搜索栏,在故事板中添加它并且工作正常(我必须更改contentOffset)
答案 6 :(得分:-2)
我已经应用了你的代码,它对我来说很好用,只需隐藏导航栏并从y = 20开始搜索栏,而不是y = 0;