美文网首页
后台短时间内运行定时器

后台短时间内运行定时器

作者: Luyc_Han | 来源:发表于2018-05-03 16:01 被阅读2次
        [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:nil];
    
        self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(recordingTime) userInfo:nil repeats:YES];
    
        [[NSRunLoop currentRunLoop] addTimer:self.timer forMode:NSRunLoopCommonModes];
    

    相关文章

      网友评论

          本文标题:后台短时间内运行定时器

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