天天看點

IOS:NSTimer

1、建立一個定時器 ,以下是便利構造器方法,

+ scheduledTimerWithTimeInterval:invocation:repeats:

+ scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:

+ timerWithTimeInterval:invocation:repeats:

+ timerWithTimeInterval:target:selector:userInfo:repeats:

注:不用scheduled方式初始化的,而scheduled的初始化方法将以預設mode直接添加到目前的runloop中.需要手動addTimer:forMode: 将timer添加到一個runloop中,

scheduledTimerWithTimeInterval:(NSTimeInterval)seconds  

預訂一個Timer,設定一個時間間隔。

表示輸入一個時間間隔對象,以秒為機關,一個>0的浮點類型的值,如果該值<0,系統會預設為0.1

 target:(id)aTarget

表示發送的對象,如self

 selector:(SEL)aSelector

方法選擇器,在時間間隔内,選擇調用一個執行個體方法

userInfo:(id)userInfo

此參數可以為nil,當定時器失效時,由你指定的對象保留和釋放該定時器。

repeats:(BOOL)yesOrNo

當YES時,定時器會不斷循環直至失效或被釋放,當NO時,定時器會循環發送一次就失效。

例如:

    NSTimer *showTimer =          [NSTimer scheduledTimerWithTimeInterval:timer target:selfselector:@selector(Press:) userInfo:nil repeats:NO];

或者:

     NSTimer *showTimer = [NSTimer timerWithTimeInterval:4.0 target:self selector:@selector(Press:) userInfo:nil repeats:NO];

    [[NSRunLoop currentRunLoop]addTimer:showTimer forMode:NSDefaultRunLoopMode];

//初始化方法

– initWithFireDate:interval:target:selector:userInfo:repeats:

2、觸發(啟動)

當定時器建立完(不用scheduled的,添加到runloop中後,該定時器将在初始化時指定的timeInterval秒後自動觸發。

可以使用-(void)fire;方法來立即觸發該定時器;

注:You can use this method to fire a repeating timer without interrupting its regular firing schedule. If the timer is non-repeating, it is automatically invalidated after firing, even if its scheduled fire date has not arrived.

在重複執行的定時器中調用此方法後立即觸發該定時器,但不會中斷其之前的執行計劃;

在不重複執行的定時器中調用此方法,立即觸發後,就會使這個定時器失效。

3、停止

- (void)invalidate;

這個是唯一一個可以将計時器從runloop中移出的方法。

注:

NSTimer可以精确到50-100毫秒.

NSTimer不是絕對準确的,而且中間耗時或阻塞錯過下一個點,那麼下一個點就pass過去了.