gpt4 book ai didi

ios - 拉动刷新不适用于少量单元格

转载 作者:搜寻专家 更新时间:2023-10-31 19:31:24 24 4
gpt4 key购买 nike

我有一个提要 View Controller (使用 UICollectionViewController 实现)当我没有足够的单元格来覆盖大厅屏幕高度时,刷新的拉动不起作用。我该如何解决这个问题?

代码:

var refreshControl: UIRefreshControl!

override func viewDidLoad() {
super.viewDidLoad()


self.refreshControl = UIRefreshControl()
self.refreshControl.attributedTitle = NSAttributedString(string: "Pull to refresh")
self.refreshControl.addTarget(self, action: "refresh:", forControlEvents: UIControlEvents.ValueChanged)
self.postCollection.addSubview(refreshControl)
}

func refresh(sender:AnyObject)
{
getPost()
}

编辑:不工作我的意思是 uicollectionview 不能被拉下并且动画没有开始。

最佳答案

swift 4

以下内容将强制 Collection View 始终反弹,在本例中为垂直反弹,即使项目未填满整个 Collection View 高度也是如此。

self.collectionView.alwaysBounceVertical = true

关于ios - 拉动刷新不适用于少量单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28681793/

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