你好,歡迎來到IOS教程網

 Ios教程網 >> IOS編程開發 >> IOS編程技術 >> iOS中定時器NSTimer的使用-備用

iOS中定時器NSTimer的使用-備用

編輯:IOS編程技術

1、初始化

+ (NSTimer *)timerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)yesOrNo;

+ (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)yesOrNo;

注:不用scheduled方式初始化的,需要手動addTimer:forMode: 將timer添加到一個runloop中。

  而scheduled的初始化方法將以默認mode直接添加到當前的runloop中.

 

舉例:

NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:10.0 target:self 

selector:@selector(timerFired:) userInfo:nil repeats:NO];

NSTimer *myTimer = [NSTimertimerWithTimeInterval:3.0 target:selfselector:@selector(timerFired:)userInfo:nilrepeats:NO];

[[NSRunLoopcurrentRunLoop] addTimer:myTimerforMode:NSDefaultRunLoopMode];

 

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過去了.

  1. 上一頁:
  2. 下一頁:
蘋果刷機越獄教程| IOS教程問題解答| IOS技巧綜合| IOS7技巧| IOS8教程
Copyright © Ios教程網 All Rights Reserved