UIScrollView pauses NSTimer while scrolling(UIScrollView 在滚动时暂停 NSTimer)
问题描述
我有一个 UIScrollView
,它有一系列快速更新数字的标签(每 0.06 秒).然而,当滚动视图移动时,NSTimer
会暂停,直到滚动和弹性动画完成后才会继续.
I have a UIScrollView
that has a series of labels which are rapidly updating numbers (every .06 seconds). While the scroll view is moving, however, the NSTimer
is paused and does not continue until after the scrolling and the elastic animation have finished.
如何避免这种情况并让 NSTimer
运行而不管滚动视图的状态如何?
How can I avoid this and have the NSTimer
run regardless of the state of the scroll view?
推荐答案
解决此问题的简单方法是将 NSTimer
添加到 mainRunLoop
.
An easy way to fix this is adding your NSTimer
to the mainRunLoop
.
[[NSRunLoop mainRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
要从所有安装了计时器的运行循环模式中删除计时器,请向计时器发送 invalidate
消息.
To remove a timer from all run loop modes on which it is installed, send an invalidate
message to the timer.
这篇关于UIScrollView 在滚动时暂停 NSTimer的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UIScrollView 在滚动时暂停 NSTimer
基础教程推荐
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01