gpt4 book ai didi

ios - 使用 uiview 在 CollectionView 中上拉重新加载

转载 作者:行者123 更新时间:2023-11-30 11:20:16 24 4
gpt4 key购买 nike

我有一个用于显示评论的 Collection View ,并且我在 View Controller 底部使用高度为0的uiview。当用户到达 Collection View 中内容的底部时,当他拉出过去的内容时,我会在scrollviewdidscroll中检查

func scrollViewDidScroll(_ scrollView: UIScrollView) {
if self.comment.count >= 5 {
let offseety = scrollView.contentOffset.y
let contenthight = scrollView.contentSize.height
if offseety > contenthight - scrollView.frame.size.height + 5 && offseety > 50{
if self.viewheight.constant < 50 {
self.viewheight.constant = scrollView.frame.size.height - contenthight + offseety
if offseety > contenthight - scrollView.frame.size.height + 50{

self.anddiii.isHidden = false
self.anddiii.startAnimating()
self.anothershit.isHidden = false
self.anothershit.text = "Loading more"
}
}}else{

}
}
}

但是滚动结束后 Collection View 滚动回来的问题,有没有办法在最后一个集合单元格下方放置一个偏移量以显示 uiview

最佳答案

尝试下面的代码:

self.collectionView.contentInset = UIEdgeInsetsMake(0,0,55,0)

关于ios - 使用 uiview 在 CollectionView 中上拉重新加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51335754/

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