本文主要是介绍通过UIBackgroundTaskIdentifier在后台挂起时依旧能执行代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
通过UIBackgroundTaskIdentifier 实现在APP后台挂起时依旧能完成我们想要的功能。
这里通过计时器模拟后台操作。
@property (nonatomic,assign) UIBackgroundTaskIdentifier task;
在进入后台的方法中添加代码
- (void)applicationDidEnterBackground:(UIApplication *)application {self.task = [[UIApplication sharedApplication] beginBackgroundTaskWithExpirationHandler:^{[[UIApplication sharedApplication] endBackgroundTask:self.task];self.task = UIBackgroundTaskInvalid;}];__block int count = 0;[NSTimer scheduledTimerWithTimeInterval:1 repeats:YES block:^(NSTimer * _Nonnull timer) {count ++;NSLog(@"%d",count);}];}
控制台输出
这篇关于通过UIBackgroundTaskIdentifier在后台挂起时依旧能执行代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!