UIScrollView 暂停 NSTimer 直到滚动完成 [英] UIScrollView pauses NSTimer until scrolling finishes

查看:16
本文介绍了UIScrollView 暂停 NSTimer 直到滚动完成的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

UIScrollView(或其派生类)正在滚动时,似乎所有正在运行的 NSTimers 都会暂停,直到滚动完成.

While a UIScrollView (or a derived class thereof) is scrolling, it seems like all the NSTimers that are running get paused until the scroll is finished.

有没有办法解决这个问题?线程?优先级设置?有什么事吗?

Is there a way to get around this? Threads? A priority setting? Anything?

推荐答案

一个简单的 &简单实施的解决方案是:

An easy & simple to implement solution is to do:

NSTimer *timer = [NSTimer timerWithTimeInterval:... 
                                         target:...
                                       selector:....
                                       userInfo:...
                                        repeats:...];
[[NSRunLoop mainRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];

这篇关于UIScrollView 暂停 NSTimer 直到滚动完成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆