保持APP后台NSTimer运行

时间:2023-03-09 15:37:02
保持APP后台NSTimer运行
[[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:nil];
self.timer = [NSTimer scheduledTimerWithTimeInterval: target:self selector:@selector(btnClicked:) userInfo:nil repeats:YES];
[[NSRunLoop currentRunLoop] addTimer:self.timer forMode:NSRunLoopCommonModes];

保持APP后台NSTimer运行