欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

IOS 中NSTimer定时器的使用

程序员文章站 2023-12-20 16:20:34
ios 中nstimer定时器的使用 nstimery 定时器,主要用于进行定时执行指定方法,常用场景如:获取验证码的按钮倒计时;图片轮播定时。 1 使用注意事项:...

ios 中nstimer定时器的使用

nstimery 定时器,主要用于进行定时执行指定方法,常用场景如:获取验证码的按钮倒计时;图片轮播定时。

1 使用注意事项:

1.1 倒计时时间间隔(时间单位是秒)
1.2 指定的执行方法
1.3 实现指定执行方法的对象
1.4 是否重复执行
2 对象的内存管理及销毁
2.1 使用方法" invalidate "进行停止
2.2 将对象设置为" nil "
2.3 特别是在返回到其他视图控制器的时候,要在方法" - (void)viewwilldisappear:
     (bool)animated "中(注意:不能在方法" - (void)dealloc 在设置)将timer停止,并设置为nil

// 有效释放 
- (void)viewwilldisappear:(bool)animated 
{ 
  [super viewwilldisappear:animated]; 
   
  [timer invalidate]; 
  timer = nil; 
} 
 
// 无效释放 
- (void)delloc 
{ 
  [timer invalidate]; 
  timer = nil; 
} 

3 计时器启用关闭继续

3.1 开始:

timer.firedate = [nsdate distantpast]; 

3.2 停止:

timer.firedate = [nsdate distantfuture]; 

3.3 继续:

[timer setfiredate:[nsdate date]]; 

使用示例(倒计时):

三种实例化方法,级对应的停止方法

方法1

// 实例化方法1 初始化后即开始执行 
if (self.timer == nil) 
{ 
    self.time = 10.0; 
    // 带参数 
    nsnumber *number = @(self.time); 
    self.timer = [nstimer scheduledtimerwithtimeinterval:1.0 target:self selector:@selector(countdowntime:) userinfo:number repeats:yes]; 
    // 非必要设置,实际已设置为 nsdefaultrunloopmode 模式 
    [[nsrunloop currentrunloop] addtimer:self.timer formode:nsrunloopcommonmodes]; 
} 

// 关闭定时器方法1 
[self.timer invalidate]; 
self.timer = nil; 

方法2

// 实例化方法2 初始后化,需要调用" setfiredate "才开始执行 
if (self.timer == nil) 
{ 
    self.timer = [nstimer scheduledtimerwithtimeinterval:1.0 target:self selector:@selector(countdowntime:) userinfo:nil repeats:yes]; 
    // 非必要设置,实际已设置为 nsdefaultrunloopmode 模式 
    [[nsrunloop currentrunloop] addtimer:self.timer formode:nsrunloopcommonmodes]; 
    [self.timer setfiredate:[nsdate distantfuture]]; 
} 
self.time = 10.0; 
[self.timer setfiredate:[nsdate distantpast]]; 



// 关闭定时器方法2 
[self.timer setfiredate:[nsdate distantfuture]]; 

方法3

// 实例化方法3 初始化后,需要调用" fire "才开始执行 
if (self.timer == nil) 
{ 
    self.timer = [nstimer timerwithtimeinterval:1.0 target: self selector:@selector(countdowntime:) userinfo:nil repeats:yes]; 
    // 必须设置 nsrunloop 线程池,否则无效 
    [[nsrunloop currentrunloop] addtimer:self.timer formode:nsrunloopcommonmodes]; 
} 
self.time = 10.0; 
[self.timer fire]; 

// 关闭定时器方法3 
[self.timer invalidate]; 
self.timer = nil; 

如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站 的支持!

上一篇:

下一篇: