博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS后台任务,争取一段时间处理后事
阅读量:6113 次
发布时间:2019-06-21

本文共 855 字,大约阅读时间需要 2 分钟。

- (void)timerAction:(NSTimer *)timer {    count++;    UILabel *lable = (UILabel *)[self.window viewWithTag:100];    NSString *str = [NSString stringWithFormat:@"%d", count];    lable.text = str;    if (count % 200 == 0) {        UIApplication *application = [UIApplication sharedApplication];        [application endBackgroundTask:taskId];        taskId = [application beginBackgroundTaskWithExpirationHandler:NULL];        count = 0;    }    NSLog(@"%@", str);}- (void)applicationDidEnterBackground:(UIApplication *)application{    taskId = [application beginBackgroundTaskWithExpirationHandler:^{        [application endBackgroundTask:taskId];    }];        [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(timerAction:) userInfo:nil repeats:YES];}// 实际结果,偶然性被kill掉,175秒,300秒,在真机测试中。

转载于:https://my.oschina.net/wangdk/blog/165509

你可能感兴趣的文章
Django之FBV与CBV
查看>>
Vue之项目搭建
查看>>
app内部H5测试点总结
查看>>
Docker - 创建支持SSH服务的容器镜像
查看>>
[TC13761]Mutalisk
查看>>
三级菜单
查看>>
Data Wrangling文摘:Non-tidy-data
查看>>
加解密算法、消息摘要、消息认证技术、数字签名与公钥证书
查看>>
while()
查看>>
常用限制input的方法
查看>>
Ext Js简单事件处理和对象作用域
查看>>
IIS7下使用urlrewriter.dll配置
查看>>
12.通过微信小程序端访问企查查(采集工商信息)
查看>>
WinXp 开机登录密码
查看>>
POJ 1001 Exponentiation
查看>>
HDU 4377 Sub Sequence[串构造]
查看>>
云时代架构阅读笔记之四
查看>>
WEB请求处理一:浏览器请求发起处理
查看>>
Lua学习笔记(8): 元表
查看>>
PHP经典算法题
查看>>