UIScrollView 在滚动时暂停 NSTimer
- 作者: 倾我一世芳华
- 来源: 51数据库
- 2022-10-20
问题描述
我有一个 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.
推荐阅读
热点文章
检查拆分键盘
0
带有“上一个"的工具栏和“下一个"用于键盘输入AccessoryView
0
Activity 启动时显示软键盘
0
UIWebView 键盘 - 摆脱“上一个/下一个/完成"酒吧
0
在 iOS7 中边缘滑动时,使键盘与 UIView 同步动画
0
我的 iOS 应用程序中的键盘在 iPhone 6 上太高了.如何在 XCode 中调整键盘的分辨率?
0
android:inputType="textEmailAddress";- '@' 键和 '.com' 键?
0
禁用 iPhone 中键盘的方向
0
Android 2.3 模拟器上的印地语键盘问题
0
keyDown 没有被调用
0
