NSTimer Reliable Alternatives

前端 未结 2 434
感情败类
感情败类 2020-12-09 20:30

I have an application that is supposed to log certain things every 1 second and I\'m currently using NSTimer, but if my application transitions screens (or almo

相关标签:
2条回答
  • 2020-12-09 20:58

    NSTimer is not guaranteed to fire exactly on time, ever. But you can use an NSTimer in a much more reliable way than you are now. When you use scheduledTimerWithTimeInterval you create an NSTimer which is scheduled in the run loop for NSDefaultRunLoopMode. This mode is paused when the UI is being used, so your timers won't fire when there is user interaction. To avoid this pause use the mode NSRunLoopCommonModes. To do this you will have to schedule the timer yourself like so:

    timer = [NSTimer timerWithTimeInterval:1 target:self selector:@selector(update) userInfo:nil repeats:YES];
    [[NSRunLoop currentRunLoop] addTimer:timer forMode:NSRunLoopCommonModes];
    
    0 讨论(0)
  • 2020-12-09 21:06

    You could:

    • Put the NSTimer in a different thread (it may not be affected by the UI that way)
    • Decrease the interval (say 0.1 second) and, in your logging function, check if it is the "right" time to log what you want.
    0 讨论(0)
提交回复
热议问题