iOS开发中使用scheduledTimerWithTimeInterval实现定时器的创建和操作方法详解
scheduledTimerWithTimeInterval是NSTimer类的一个类方法,可创建一个新的定时器并将其添加到当前运行循环中,实现定时执行指定的方法。
方法语法
该方法的语法结构为:+(NSTimer )scheduledTimerWithTimeInterval:(NSTimeInterval)seconds target:(id)aTarget selector:(SEL)aSelector userInfo:(nullable id)userInfo repeats:(BOOL)repeats;
参数详解
seconds
代表执行之前等待的时间,为NSTimeInterval类型。例如设置成1.0,就代表1秒后执行指定方法。
aTarget
需要执行方法的对象,即指定哪个对象来执行selector所对应的方法。
aSelector
需要执行的方法,是一个选择器。此方法必须只有一个参数(类型为NSTimer ),并且返回值为void。例如定义一个名为action:的方法:
- (void)action:(NSTimer )timer {
// 这里编写定时器触发时要执行的代码
}
userInfo
可以传入一些额外的信息给定时器,类型为id,可为空。
repeats
表示定时器是否需要循环执行,为BOOL类型。如果设置为YES,定时器会按照指定的时间间隔重复执行;若设置为NO,定时器仅执行一次。
创建定时器示例
以下是创建一个1秒后执行一次和每秒循环执行的定时器示例:
// 1秒后执行一次
NSTimer singleTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(action:) userInfo:nil repeats:NO];
// 每秒循环执行
NSTimer repeatTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(action:) userInfo:nil repeats:YES];
定时器的停止和释放
如果需要停止一个正在运行的定时器,可以调用定时器的invalidate方法,该方法会将定时器从运行循环中移除,并释放相关资源。示例如下:
[repeatTimer invalidate];
repeatTimer = nil;
需要注意的是,调用invalidate方法后,定时器就不能再被使用,若要再次使用,需要重新创建。