gpt4 book ai didi

iphone - 如何在 Notes.app 中复制 UISearchBar 滚动行为?

转载 作者:行者123 更新时间:2023-12-03 18:39:36 26 4
gpt4 key购买 nike

当您向下滚动 tableView (Notes.app) 时,搜索栏将固定在顶部,但当您向上滚动 tableView 时,搜索栏将被隐藏。这就是我想要的。

查看滚动指示器,UISearchBar 似乎是表 ScrollView 的 subview 。但是,如果我在 Interface Builder 中向 tableView 添加搜索栏,那么它总是会像常规行一样滚动附加到 tableView。

最佳答案

在表格 View 中,将一个空白的透明 UIView (searchBarPlaceholderView) 放入 tableHeaderView 槽中,其尺寸与 UISearchBar 完全相同。然后将 UISearchBar (searchBar) 添加到顶级 View 。

然后,在您的 TableView 委托(delegate)中添加

- (void)scrollViewDidScroll:(UIScrollView *)scrollView {
CGRect sbFrame = searchBar.frame;
sbFrame.origin.y = searchBarPlaceholderView.frame.origin.y - scrollView.contentOffset.y;

// it cannot move from the top of the screen
if (sbFrame.origin.y > 0) {
sbFrame.origin.y = 0;
}

searchBar.frame = sbFrame;
}

关于iphone - 如何在 Notes.app 中复制 UISearchBar 滚动行为?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3363581/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com