码迷,mamicode.com
首页 > 其他好文 > 详细

NSTimer实现读秒、倒计时等周期性操作

时间:2015-06-11 18:35:25      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

self.timerSchedule = [NSTimer scheduledTimerWithTimeInterval:0.2 target:self selector:@selector(spinPicker) userInfo:nil repeats:YES];

该类函数将返回一个NSTimer的实例,并且按照scheduledTimerWithTimeInterval所设定的周期(秒)调用selector所指定的函数,如需循环调用则要将repeats的参数指定为YES。

判断NSTimer对象是否处于repeats的状态可以通过isValid函数,如果为YES表明该对象还处于repeats状态当中。通过invalidate函数可以将将该对象移出NSRunLoop循环,停止对@selector的周期性调用。

NSTimer实现读秒、倒计时等周期性操作

标签:

原文地址:http://www.cnblogs.com/killiancheung/p/4569748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!