iOS定时器

相关类:NSTimer

A timer is not a real-time mechanism; it fires only when one of the run loop modes to which the timer has been added is running and able to check if the timer’s firing time has passed. Because of the various input sources a typical run loop manages, the effective resolution of the time interval for a timer is limited to on the order of 50-100 milliseconds. If a timer’s firing time occurs during a long callout or while the run loop is in a mode that is not monitoring the timer, the timer does not fire until the next time the run loop checks the timer.

Timer不是实时的,依赖于运行的loop,精度为50-100ms。如果run loop没有monitoring timer或者正在long callout,Timer不会被触发。

创建定时器

A timer object can be registered in only one run loop at a time, although it can be added to multiple run loop modes within that run loop. There are three ways to create a timer:scheduledTimerWithTimeInterval、timerWithTimeInterval和initWithFireDate

后两者在创建之后需要调用addTimer:forMode:

Once scheduled on a run loop, the timer fires at the specified interval until it is invalidated. A non-repeating timer invalidates itself immediately after it fires.you should always call the invalidate method from the same thread on which the timer was installed. Invalidating the timer immediately disables it so that it no longer affects the run loop.

 

NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:100 target:self selector:@selector(timerFireMethod:) userInfo:nil repeats:YES];

userInfo:The user info for the timer. The timer maintains a strong reference to this object until it (the timer) is invalidated. This parameter may be nil.

 

selector原型: -(void)timerFireMethod:(NSTimer*)timer

启停

暂停:[timer setFireDate:[NSDate distantFuture]]

恢复:[timer setFireDate:[NSDate date]]

转载于:https://www.cnblogs.com/shanlilaideyu/p/4193621.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/492660.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

QT给文本添加链接事件

参考自: https://blog.csdn.net/humanking7/article/details/80685893 说明 Qt的文本窗体部件能够显示富文本,使用HTML4 标记。能够以这种方式显示富文本的窗体控件有: QTextDocument, 以及 QLabel and QTextEdit。 关于打开超链接的两种方…

AI人必看!89页全网最全清华知识图谱报告

来源:智东西摘要:谷歌冲锋,淘宝猛追,这个AI秘密武器强在哪?知识图谱(Knowledge Graph)是人工智能的重要分支技术,它在2012年由谷歌提出,成为建立大规模知识的杀手锏应用&…

自学php【二】 PHP计算时间加一天

最近几天在做一个项目,主要是将SQLserver数据到MySQL数据库,一个url跑一次 同步一次昨天的数据,由于很多数据需要同步,所以做了一个操作界面的,一个单纯跑url的 在其中涉及到了对于时间的计算!当我写完这个…

为QT添加qss样式文件

代码 QFile file("my.qss"); file.open(QFile::ReadOnly); QString styleSh tr(file.readAll()); setStyleSheet(styleSh);my.qss文件内容 /* 正常时,按钮颜色 */ QPushButton{background-color:rgb(240,255,255);color: rgb(0, 0, 2);border-style: o…

人机融合智能的现状与展望

来源:人机与认知实验室作者:刘伟 苌凯旋摘要:本文对人机融合智能的概念、应用、发展将面临的关键问题以及未来发展的方向进行简要介绍。1 引言1.1 现有人工智能的不足与挑战人工智能(AI)的概念于1956年的达特蒙斯学院暑…

J2EE软件开发视频教程

BF-TECH-J2EE软件开发工程师就业班课程 课时数量:920课时 用到技术:J2EE 涉及项目:权限管理通用模块、易买网、CRM客户关系管理系统等 咨询qq:1840215592 J2EE软件工程师培训视频教程结合项目,进行实战图书馆信息管理系…

优先队列priority_queue的使用方式

C STL中的一种数据存储结构&#xff0c;数组的方式存储&#xff0c;插入数据时&#xff0c;设置排序规则&#xff0c;可以自动排序&#xff0c; priority_queue <int,vector<int>,less<int> > p; priority_queue <int,vector<int>,greater<int&…

Unity自带网络功能——NetworkView组件、Serialize、RPC

Unity拥有大量的第三方插件&#xff0c;专门提供了对网络功能的支持。可是&#xff0c;大部分开发人员第一次接触到的还是Unity自带的网络功能&#xff0c;也就是大家常常说到的Unity Networking API。这些API是借助于组件NetworkView发挥作用的&#xff0c;而它能够简化开发人…

Science:人工智能的发展离不开神经科学,先天结构或是下一个方向

来源&#xff1a;Science编译&#xff1a;机器之心摘要&#xff1a;人工智能从神经科学领域吸收了大量养分&#xff0c;并由此催生了深度学习和强化学习等智能处理方法。以色列魏茨曼科学研究学院计算机科学系教授 Shimon Ullman 相信神经科学还能为人工智能发展提供进一步的助…

Ubuntu20.04 及深度学习环境anaconda、cuda、cudnn、pytorch、paddle2.3安装记录

学习目标&#xff1a; Ubuntu20.04下装好torch、paddle深度学习环境。 选择的版本环境是 &#xff1a;最新的nvidia驱动、cuda 11.1 、cudnn v8.1.1&#xff0c;下面会说为啥这么选。 学习内容&#xff1a; 1. Ubuntu20.04仓库换源 本节参考Ubuntu 20.04 Linux更换源教程 2…

NSIS脚本语言安装与编译

NSIS是什么 当项目中需要把安装包发给客户时&#xff0c;不能直接发送release文件&#xff0c;需要把release文件压缩打包&#xff0c;这时就可以用到NSIS工具&#xff0c;NSIS工具可以进行包装&#xff0c;使用时需要下载&#xff1a; 编译环境&#xff1a;nullsoft scriptab…

今日思考

1. 带人&#xff0c;就是要带来改变 2. 程序员做到什么时候退休 3. 人一辈子能创造多少财富 转载于:https://www.cnblogs.com/x3d/p/4209759.html

AI 的寒冬将来临

来源&#xff1a;云头条深度学习处于所谓的AI革命的前沿至今已有好几年&#xff1b;许多人过去认为&#xff0c;深度学习是神奇的“银弹”&#xff0c;会把我们带到技术奇点&#xff08;general AI&#xff09;的奇妙世界。许多公司在2014年、2015年和2016年纷纷下豪赌&#xf…

Libcurl安装与HelloWorld

Windows系统下源代码下载编译、安装方式如下&#xff1a; https://blog.csdn.net/fxbjye/article/details/89152849 编译后得到库文件&#xff0c;把这两个文件复制到项目文件中&#xff0c; 修改项目文件的属性&#xff0c; 修改附加依赖项&#xff1a; 输入代码&#xff1…

sql分页

select * from ( select ROW_NUMBER() over(order by id Desc) as rowid,* from News) tb where tb.rowid between 1 and 5 )转载于:https://www.cnblogs.com/andyxl/p/4215937.html

信息论之父是如何将世界数字化的?

来源&#xff1a;CSDN编译&#xff1a;弯月机械鼠闯迷宫在 20 世纪 50 年代早期的一段视频中&#xff0c;贝尔实验室的科学家克劳德香农&#xff08;Claude Shannon&#xff09;展示了他的一项新发明&#xff1a;一只名为 Theseus 的机械鼠&#xff08;看起来需要上发条&#x…

[BC Round#26] Card 【各种水】

题目链接&#xff1a;HDOJ - 5159 这道题的做法太多了..BC的第二题也是可以非常水的.. 算法一 我在比赛的时候写的算法是这样的.. 预处理出所有的答案&#xff0c;然后对于每个询问直接输出。 询问 (a, b) 记作 (a, b) 。 (a, b) 的答案是由 (a, b-1) 的答案推出的。 (a, 1) …

Libcurl的介绍

一种请求网络的函数库&#xff0c;安装完后需要一些初始化&#xff0c;修改属性等操作&#xff1b; 程序中一般分为&#xff1a; 1&#xff0c;全局初始化&#xff1b; 2&#xff0c;创建当次请求句柄&#xff1b; 3&#xff0c;设置属性&#xff1b; 4&#xff0c;执行&#x…

奇点、技术失控与技术启示录

来源&#xff1a;资本实验室回顾过去&#xff0c;我们可以看到历史上各个时期涌现出的众多超越时代的新公司、新产品、新思维和新模式。尽管绝大多数创新产品最终都失败了&#xff0c;但先行者们致力于要解决所在时代各种问题和困难的精神&#xff0c;却影响着下一代的技术进步…

Linux常用命令 -- screen

Linux常用命令 -- screen 打开一个screen $screen 这时在机器上就会存在一个screen&#xff0c;这个screen会被以默认的方式命名&#xff1a; $screen -lsThere is a screen on:4087.pts-5.jackson-virtual-machine (01/11/2015 05:33:22 PM) (Detached) 1 Socket in /var/…