最初隐藏 UITableView 的 UISearchDisplayController ( iOS SDK )?

发布于 2024-12-09 08:52:58 字数 149 浏览 2 评论 0原文

我如何最初隐藏 UITableView 的 UISearchDisplayController ?我只是希望用户向上滚动以查看 UISearchBar。

更新:我正在考虑将 UITableView 向下滚动 40px,以便 UISearchBar 可以对用户“隐藏”。

How can I hide UISearchDisplayController of UITableView initially ? I just want user to scroll up to see the UISearchBar.

UPDATE: I am thinking of scrolling the UITableView 40px lower, so that the UISearchBar can be "hidden" from user.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乖乖哒 2024-12-16 08:52:58

我的解决方案是 viewWillAppear:animted

[my_table_view setContentOffset:CGPointMake(0, searchController.searchBar.bounds.size.height)]; 

UPDATE 我们应该获取 UISearchBar 的高度,而不是使用固定值。

My solution is in viewWillAppear:animted :

[my_table_view setContentOffset:CGPointMake(0, searchController.searchBar.bounds.size.height)]; 

UPDATE we should obtain the height of UISearchBar instead of using fixed values.

一梦等七年七年为一梦 2024-12-16 08:52:58

这是我在视图中隐藏搜索栏的方法。此片段将确保搜索栏最初仅在第一次查看时隐藏,并将出现调用。

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];

    //hide search bar
    if (_searchBarRevealed == NO) {
        self.tableView.contentOffset = CGPointMake(0, 44);
        _searchBarRevealed = YES;
    }
}

Here is how I hide search bar in view will appear. This snipped will make sure that search bar is initially hidden only at the very first time of view will appear call.

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];

    //hide search bar
    if (_searchBarRevealed == NO) {
        self.tableView.contentOffset = CGPointMake(0, 44);
        _searchBarRevealed = YES;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文