1

我在导航控制器中有一个表视图控制器,在 viewDidLoad 我向表视图标题添加了一些视图:

//Build up master container view with search bar and another view that has buttons
...

//Set this as the table header
self.tableView.tableHeaderView = masterHeaderContainerView;

如果此时我什么都不做,我从上到下的视图看起来像

导航栏、搜索栏、带按钮的操作栏、表格视图单元格... https://www.dropbox.com/s/mwhipz5qpa9duzw/filterAndActions.PNG

但是,我想隐藏导航栏下的搜索栏,所以我在viewWillAppear中设置了表格视图的内容偏移量

self.tableView.contentOffset = CGPointMake(0, self.searchBar.frame.size.height);

在 iOS 6 上这工作正常,但在 iOS 7 上,当我向下滚动以显示搜索栏时,它消失了,它应该是一个空白区域。

可能会为问题提供线索的是,如果我将内容偏移量硬编码为 22(搜索栏高度的一半),然后向下滚动,则搜索栏已被看起来像背景的东西隐藏了一半。

https://www.dropbox.com/s/jm1vro769jfhpy8/halfFilterBar.PNG

所以我设置内容偏移量的量就是搜索栏被覆盖的量。有什么想法可能会在这里发生吗?

目标是有一个像邮件应用程序一样的过滤器栏,当视图首次出现时,它隐藏在导航栏下,但可以通过向下滚动来显示。

我正在以编程方式构建搜索栏和搜索显示控制器,因为视图没有 xibs / storyboard,它是标准的 UITableViewController 子类。

UISearchBar *aSearchBar = [[UISearchBar alloc] initWithFrame:CGRectZero];
UISearchDisplayController *aSearchDisplayController = [[UISearchDisplayController alloc] initWithSearchBar:aSearchBar contentsController:self];
aSearchBar.frame = ...
4

2 回答 2

2

您应该设置为在 iOS 7 中获得预期的行为

self.edgesForExtendedLayout = UIRectEdgeNone;
于 2014-03-31T23:51:29.023 回答
1

添加这个

 [self.view bringSubViewToFront:aSearchBar];

[self.tableView setClipsToBounds:YES];
于 2013-11-06T13:38:57.517 回答