滚动指示器和 uiScrollView 方法

发布于 2024-10-25 16:15:58 字数 228 浏览 7 评论 0原文

当您拖动或轻弹滚动时,滚动指示器会出现,然后当一切停止移动时,它们就会消失。

我想在这段时间(或在它们显示时)做一些事情,

我知道我可以使用 (void)scrollViewDidScroll 来开始我的事情,但是,这里的问题是,是否有一个单一的方法来结束?

我知道有单独的拖动或减速方法(轻弹之后),但必须有一个方法,因为我打赌滚动指示器正在使用它???

非常感谢您的帮助..

When you drag or flick scroll the Scroll Indicators appear then when everything stops moving they disappear.

I would like to do some stuff during this time (or while they are showing)

I know I could use (void) scrollViewDidScroll to start my things, but, and here is the question, is there a single method for the end?

I know there are individual methods for drag or deceleration (after a flick) but there must be a single one because I bet that Scroll Indicator is using it???

many thanks for any help..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过期以后 2024-11-01 16:15:58

好吧,我正在使用:

- (void) scrollViewDidScroll: (UIScrollView *) _theScroller{

    [self startJob];//start doing stuff!
}

和:

- (void) scrollViewDidEndDecelerating: (UIScrollView *) _theScroller{

    [self stopJob];//stop doing stuff!
}

- (void)scrollViewDidEndDragging:(UIScrollView *) _theScroller willDecelerate:(BOOL)decelerate {

    [self stopJob];//stop doing stuff!
}

我似乎必须使用两种方法来停止,一种是如果您只是“轻弹”滚动并让它停止,另一种是如果您拖动而不“轻弹”。

Ok I'm using:

- (void) scrollViewDidScroll: (UIScrollView *) _theScroller{

    [self startJob];//start doing stuff!
}

and:

- (void) scrollViewDidEndDecelerating: (UIScrollView *) _theScroller{

    [self stopJob];//stop doing stuff!
}

- (void)scrollViewDidEndDragging:(UIScrollView *) _theScroller willDecelerate:(BOOL)decelerate {

    [self stopJob];//stop doing stuff!
}

I seems I have to use the two methods to stop, one if you just 'flick' the scroll and let it stop, and the other if you drag about without 'flicking'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文