美文网首页
iOS NSTimer 什么时候需要使用NSRunLoopCom

iOS NSTimer 什么时候需要使用NSRunLoopCom

作者: 赵哥窟 | 来源:发表于2018-11-13 11:56 被阅读12次

    当使用NSTimer的scheduledTimerWithTimeInterval方法时。此时Timer会被加入到当前线程的Run Loop中,且模式是默认的NSDefaultRunLoopMode。而如果当前线程就是主线程(UI线程时),某些UI事件,比如UIScrollView的拖动操作,会将Run Loop切换成UITrackingRunLoopMode模式,在这个过程中,默认的NSDefaultRunLoopMode模式中注册的事件是不会被执行的。也就是说此时使用scheduledTimerWithTimeInterval添加到Run Loop中的Timer就不会执行。

    所以为了设置一个不被UI线程干扰的Timer,我们需要手动创建一个Timer,然后使用NSRunLoop的addTimer:forMode:方法来把Timer按照指定模式加入到Run Loop中。这里使用的模式是:NSRunLoopCommonModes,这个模式等效于NSDefaultRunLoopMode和UITrackingRunLoopMode的结合。

    比如滑动UIScrollView的时候,NSTimer的处理时间根本没有调用,当松手的时候,又执行了。
    原因:当滑动UIScrollView的时候,RunLoop切换成UITrackingRunLoopMode模式,而NSTimer默认注册NSDefaultRunLoopMode模式,所以拖动时Timer不执行。

    使用以下方法滑动是没有影响的。

    NSTimer *timer=[NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(Handlete) userInfo:nil repeats:YES];
    [[NSRunLoop mainRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
    

    相关文章

      网友评论

          本文标题:iOS NSTimer 什么时候需要使用NSRunLoopCom

          本文链接:https://www.haomeiwen.com/subject/pwbkfqtx.html