我已将搜索栏添加到 tableview 的 tableHeaderView。然而,写作
self.tableView.contentOffset = CGPointMake(0, 44);
或者
[self.tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:NO];
将 searchBar 隐藏在顶部导航栏后面,但即使用户向下滑动 tableview,它也不可见。它再次隐藏起来。这似乎在 iOS 6 中运行良好,但在 iOS 7 beta 中却不行。我需要做什么?