本文主要是介绍定时器(二)---ios NSTimer使用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
调用一次计时器方法:
[cpp] view plain copy
- myTimer
= [NSTimer scheduledTimerWithTimeIn terval:1.5 target:self selector:@selector(scrollTimer) userInfo:nil repeats:NO]; - //不重复,只调用一次。timer运行一次就会自动停止运行
重复调用计时器方法:
[cpp] view plain copy
- timer
= [NSTimer scheduledTimerWithTimeIn terval:1.0 target:self selector:@selector(function:) userInfo:nil repeats:YES]; - //每1秒运行一次function方法。
停止timer的运行,但这个是永久的停止:
[cpp] view plain copy
- //取消定时器
- [timer
invalidate];
要想实现:先停止,然后再某种情况下再次开启运行timer,可以使用下面的方法:
首先关闭定时器不能使用上面的方法,应该使用下面的方法:
[cpp] view plain copy
- //关闭定时器
- [myTimer
setFireDate:[NSDate distantFuture]];
然后就可以使用下面的方法再此开启这个timer了:
[csharp] view plain copy
- //开启定时器
- [myTimer
setFireDate:[NSDate distantPast]];
例子:比如,在页面消失的时候关闭定时器,然后等页面再次打开的时候,又开启定时器。
(主要是为了防止它在后台运行,暂用CPU)可以使用下面的代码实现:
[cpp] view plain copy
- //页面将要进入前台,开启定时器
- -(void)viewWillAppear:(BOOL)animated
- {
-
//开启定时器 -
[scrollView.myTimer setFireDate:[NSDate distantPast]]; - }
-
- //页面消失,进入后台不显示该
这篇关于定时器(二)---ios NSTimer使用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!