gpt4 book ai didi

ios - 可以区分用户滚动和编程滚动吗?

转载 作者:行者123 更新时间:2023-11-28 13:43:49 25 4
gpt4 key购买 nike

我在 scrollViewDidScroll 上放置了一个滚动事件。但是当用户滚动时,它在使用 setContentOffSet 时也有效。我想让它仅在用户滚动时起作用。

func scrollViewDidScroll(_ scrollView: UIScrollView) {
if (self.lastContentOffset > scrollView.contentOffset.y) {
let contentSize = scrollView.contentSize.height
let tableSize = scrollView.frame.size.height - scrollView.contentInset.top - scrollView.contentInset.bottom
let canLoadFromBottom = contentSize > tableSize
// Offset
let currentOffset = scrollView.contentOffset.y
let maximumOffset = scrollView.contentSize.height - scrollView.frame.size.height
let difference = maximumOffset - currentOffset
if canLoadFromBottom, difference <= -85.0{
loadMore()
}
self.lastContentOffset = scrollView.contentOffset.y
}

最佳答案

如果您在代码中滚动,之后您会立即收到一次委托(delegate)方法,因此很容易在代码滚动之前引发 Bool 标志并在委托(delegate)方法中检测到这一点。

关于ios - 可以区分用户滚动和编程滚动吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55699921/

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