NSTimer后台运行机制

作者: 左边飞来一只狗 | 来源:发表于2017-01-05 16:07 被阅读36次

    使用NSTimer的时候,发现每次APP进入后台,或者屏幕休眠后,NSTimer就会暂停。为了解决这个问题,翻阅了各种博客和网页。最终在伟大的stackoverflow上找到了一个简单并且真正可行的解决方案!代码如下:
    [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:nil];
    self.timer = [NSTimerscheduledTimerWithTimeInterval:1 target:selfselector:@selector(timeFireMethod)userInfo:nilrepeats:YES];
    [[NSRunLoop currentRunLoop] addTimer:self.timerforMode:NSRunLoopCommonModes];

    原问题链接:http://stackoverflow.com/questions/15092016/how-to-run-nstimer-in-background-and-sleep-in-iOS
    问题回答者表示他也是从其他地方看到的这个解决方案。知道真正原po的可以留言

    相关文章

      网友评论

        本文标题:NSTimer后台运行机制

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