0
我需要在應用程序調用的背景中運行一個計時器,然後才能進入背景方法。我遇到了一些麻煩。當我進入背景時,它什麼都不做。這是我的代碼。是否有可能在後臺運行計時器?
- (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");
}