iOS定时器NSTimer快速掌握


本文主要讲NSTimer。CADisplaylink请猛击。


NSTimer创建方式有三种:

⚠️:block方式可用为iOS(10.0)。低版本调用会崩溃。

  • 方式一
    [scheduledTimerWithTimeInterval:invocation:repeats:]
    [scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:]
    [scheduledTimerWithTimeInterval:repeats:repeatsblock:]⚠️API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0));

class method to create the timer and schedule it on the current run loop in the default mode.

Overview:这种方式创建会自动加入到Runloop的timerSource事件中。
注意的坑:

  1. 加入到Runloop的mode为NSDefaultRunLoopMode。而UI响应滚动事件<如滑动TableView>时的mode为UITrackingRunLoopMode。Runloop只会有一种mode运行。如果NSTimer在主线程下,此时如果定时器响应了事件,事件会被跳过。子线程不会响应UITrackingRunLoopMode
    坑2: 如果调用线程为子线程,需要调用[[NSRunLoop currentRunLoop]run]来启动子线程的Runloop。

  • 方式二
    [timerWithTimeInterval:invocation:repeats: ]
    [timerWithTimeInterval:target:selector:userInfo:repeats: ]
    [timerWithTimeInterval:repeats: block:]⚠️API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0));

After creating it, you must add the timer to a run loop manually by calling the addTimer:forMode:
method of the corresponding NSRunLoop object.)

Overview:这种方式必需要调用[addTimer:forMode: ]把timer加入到Runloop中。模式可选NSRunLoopCommonModesNSDefaultRunLoopMode
补充知识:NSDefaultRunLoopModeUITrackingRunLoopMode都具备commonMode属性。它们会自动加入NSRunLoopCommonModes中的modeItem事件。
So:NSRunLoopCommonModes不会受其他mode影响,一般选用这种模式。


  • 方式三
    [- initWithFireDate:interval:target:selector:userInfo:repeats:]
    [- initWithFireDate:interval:repeats:block:] ⚠️API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0));

After creating it, you must add the timer to a run loop manually by calling the addTimer:forMode:
method of the corresponding NSRunLoop object)

Overview::这种方式必需要调用[addTimer:forMode: ]把timer加入到Runloop中。模式选择参考方式二。
special:

  1. 这是-号方法。
  2. 可以指定FireDate。即启动定时器时间。

汇总:

  1. 如果你的定时器是repeats = YES,那要记得在不需要timer的时候调用-invalidate来释放定时器。
  2. 需要注意定时器所在的线程。timer不执行,看这点。
  3. 使用定时器需要注意创建方式,是否需要手动加入Runloop。timer不执行,看这点。
  4. 需要注意加入Runloop的mode。如果timer某次未执行,看这点。
  5. 如果你的token用这个,一定要注意,不然token失效就GG了。

Write In Last:
本文用到了一些Runloop知识。其实timer和runloop关系很大。推荐一个特别好的博文。记得点赞哦。


你可能感兴趣的:(iOS定时器NSTimer快速掌握)