我需要在后台运行一个由应用程序调用的计时器输入后台方法。我遇到了一些麻烦。当我进入背景时,它什么也没做。这是我的代码。
- (void)applicationDidEnterBackground:(UIApplication *)application {
bcheckingTimer = [NSTimer scheduledTimerWithTimeInterval:5 target:self selector:@selector(bchecker) userInfo:nil repeats:YES];
}
- (void)bchecker {
NSLog(@"Switch is on, will annoy");
}