博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NSTimer的使用
阅读量:5303 次
发布时间:2019-06-14

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

开启定时器

@property (nonatomic, weak) NSTimer *timer;// 返回一个自动开始执行任务的定时器self.timer = [NSTimer scheduledTimerWithTimeInterval:2.0 target:selfselector:@selector(nextPage:) userInfo:@"123" repeats:YES];// 修改NSTimer在NSRunLoop中的模式:NSRunLoopCommonModes// 主线程不管在处理什么操作,都会抽时间处理NSTimer[[NSRunLoop mainRunLoop] addTimer:self.timer forMode:NSRunLoopCommonModes];

关闭定时器

[self.timer invalidate];

 

转载于:https://www.cnblogs.com/xufengyuan/p/6582695.html

你可能感兴趣的文章
[LeetCode] 55. Jump Game_ Medium tag: Dynamic Programming
查看>>
[Cypress] Stub a Post Request for Successful Form Submission with Cypress
查看>>
程序集的混淆及签名
查看>>
判断9X9数组是否是数独的java代码
查看>>
00-自测1. 打印沙漏
查看>>
UNITY在VS中调试
查看>>
SDUTOJ3754_黑白棋(纯模拟)
查看>>
Scala入门(1)Linux下Scala(2.12.1)安装
查看>>
如何改善下面的代码 领导说了很耗资源
查看>>
Quartus II 中常见Warning 原因及解决方法
查看>>
php中的isset和empty的用法区别
查看>>
Android ViewPager 动画效果
查看>>
pip和easy_install使用方式
查看>>
博弈论
查看>>
Redis sentinel & cluster 原理分析
查看>>
我的工作习惯小结
查看>>
把word文档中的所有图片导出
查看>>
浏览器的判断;
查看>>
ubuntu 18.04取消自动锁屏以及设置键盘快捷锁屏
查看>>
Leetcode 589. N-ary Tree Preorder Traversal
查看>>