NSTimer在背景上工作

时间:2011-03-03 23:04:30

标签: iphone cocoa-touch background nstimer

我根本不明白,但我的应用中的NSTimer肯定是在后台运行。我在计时器运行的mehod中有一个NSLog,它正在后台进行记录。它位于带有iOS 4.2.1的iPhone 4上。我在Info.plist中声明了位置背景支持。

我在这里和其他地方阅读了文档和许多讨论,这是不可能的。这是一个iOS错误吗?还是没有文档的功能?我不想使用它并在不久的将来发现,例如随着iOS 4.3的出现,Apple默默地“修复”它并且应用程序无法正常工作。

有人知道更多吗?

2 个答案:

答案 0 :(得分:32)

每当主runloop运行时,

NSTimer将会触发。苹果公司没有做出任何我不知道的承诺来安排计时器或阻止主要的runloop运行。当您搬到后台时,您有责任取消计划您的计时器并释放资源。 Apple不会为你做这件事。但是,当你不应该使用或使用太多秒时,它们可能会杀死你。

系统中有许多漏洞,允许应用在未经授权的情况下运行。操作系统防止这种情况非常昂贵。但你不能依赖它。

答案 1 :(得分:8)

can在后台执行模式下有计时器触发。有几个技巧:

  • 您需要选择使用beginBackgroundTaskWithExpirationHandler执行后台执行。
  • 如果您在后台线程上创建NSTimer,则需要手动将其添加到mainRunLoop。

- (void)viewDidLoad
{
    // Avoid a retain cycle
    __weak ViewController * weakSelf = self;

    // Declare the start of a background task
    // If you do not do this then the mainRunLoop will stop
    // firing when the application enters the background
    self.backgroundTaskIdentifier =
    [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{

        [[UIApplication sharedApplication] endBackgroundTask:self.backgroundIdentifier];
    }];

    // Make sure you end the background task when you no longer need background execution:
    // [[UIApplication sharedApplication] endBackgroundTask:self.backgroundTaskIdentifier];


    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

        // Since we are not on the main run loop this will NOT work:
        [NSTimer scheduledTimerWithTimeInterval:0.5
                                         target:self
                                       selector:@selector(timerDidFire:)
                                       userInfo:nil
                                        repeats:YES];

        // This is because the |scheduledTimerWithTimeInterval| uses
        // [NSRunLoop currentRunLoop] which will return a new background run loop
        // which will not be currently running.
        // Instead do this:
        NSTimer * timer =
        [NSTimer timerWithTimeInterval:0.5
                                target:weakSelf
                              selector:@selector(timerDidFire:)
                              userInfo:nil
                               repeats:YES];

        [[NSRunLoop mainRunLoop] addTimer:timer
                                  forMode:NSDefaultRunLoopMode];
        // or use |NSRunLoopCommonModes| if you want the timer to fire while scrolling
    });
}

- (void) timerDidFire:(NSTimer *)timer
{
    // This method might be called when the application is in the background.
    // Ensure you do not do anything that will trigger the GPU (e.g. animations)
    // See: http://developer.apple.com/library/ios/DOCUMENTATION/iPhone/Conceptual/iPhoneOSProgrammingGuide/ManagingYourApplicationsFlow/ManagingYourApplicationsFlow.html#//apple_ref/doc/uid/TP40007072-CH4-SW47
    NSLog(@"Timer did fire");
}

备注

  • 应用程序只能执行约10分钟的后台执行 - 此后计时器将停止触发。
  • 从iOS 7开始,当设备锁定时,它几乎会立即暂停前台应用。锁定iOS 7应用程序后,计时器不会启动。