gpt4 book ai didi

ios - 如何在 Swift 中向上滚动整个表格 View ?

转载 作者:行者123 更新时间:2023-11-28 06:37:27 25 4
gpt4 key购买 nike

我在顶部有一个水平滚动的分页 Collection View ,在底部有一个表格 View ,如下所示:

enter image description here

我想要实现的是,当用户向上滚动表格 View 时,我希望整个页面向上滚动。目前,向上滚动时,tableview 被限制在底部空间。许多应用程序都有这种模式,但 Fiverr 应用程序就是一个例子,这里是一个屏幕截图。第二张图是我开始向上滚动的时候:

enter image description here

我是 Swift 的初学者,所以我什至不知道要搜索什么关键字。实现这一目标的最简单方法是什么?

最佳答案

我认为您想将所有 View 放入 UIScrollView。

您还可以将 UICollectionView 放入表格的标题 View 中。但是,如果您在 UITableView 下有更多组件,我发现将整个组件放入 UIScrollView 会更容易。

override func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let headerView = UIView()
//build header view here
headerView.addSubview(collectionView)
return headerView
}

override func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
//Return the height of the headerview.
return height
}

编辑以回答评论:)

关于ios - 如何在 Swift 中向上滚动整个表格 View ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38808157/

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