滚动指示器和 uiScrollView 方法
当您拖动或轻弹滚动时,滚动指示器会出现,然后当一切停止移动时,它们就会消失。
我想在这段时间(或在它们显示时)做一些事情,
我知道我可以使用 (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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我正在使用:
和:
我似乎必须使用两种方法来停止,一种是如果您只是“轻弹”滚动并让它停止,另一种是如果您拖动而不“轻弹”。
Ok I'm using:
and:
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'.