iOS 定時器NSTimer的開啟與關閉

2021-07-11 23:59:21 字數 1050 閱讀 9003

呼叫一次計時器方法

mytimer = [nstimer scheduledtimerwithtimeinterval:1.5 target:self selector:@selector(scrolltimer) userinfo:nil repeats:no];  

//不重複,只呼叫一次。timer執行一次就會自動停止執行

重複呼叫計時器方法:

timer =  [nstimer scheduledtimerwithtimeinterval:1.0 target:self selector:@selector(function:) userinfo:nil repeats:yes];  

//每1秒執行一次function方法。

停止timer的執行,但這個是永久的停止:(注意:停止後,一定要將timer賦空,否則還是沒有釋放。不信?你自己試試~)

//取消定時器  

[timer invalidate];

timer = nil;

要想實現:先停止,然後再某種情況下再次開啟執行timer,可以使用下面的方法:

首先關閉定時器不能使用上面的方法,應該使用下面的方法:

//關閉定時器  

[mytimer setfiredate:[nsdate distantfuture]];

然後就可以使用下面的方法再此開啟這個timer了:

//開啟定時器  

[mytimer setfiredate:[nsdate distantpast]];

例子:比如,在頁面消失的時候關閉定時器,然後等頁面再次開啟的時候,又開啟定時器。

(主要是為了防止它在後台執行,暫用cpu)可以使用下面的**實現:

//頁面將要進入前台,開啟定時器  

//頁面消失,進入後台不顯示該頁面,關閉定時器

IOS中定時器NSTimer

呼叫一次計時器方法 cpp view plain copy mytimer nstimer scheduledtimerwithtimeinterval 1.5 target self selector selector scrolltimer userinfo nil repeats no 不重複...

iOS中定時器NSTimer使用

呼叫一次計時器方法 cpp view plain copy mytimer nstimer scheduledtimerwithtimeinterval 1.5 target self selector selector scrolltimer userinfo nil repeats no 不重複...

ios 時間定時器 NSTimer應用demo

demo功能 ios nstimer應用demo iphone6.1 測試通過。demo說明 ios中的時間定時器 nstimer,他用來完成程式的定時功能,他需要三個主要的引數 時間間隔nstimeinterval浮點型,事件 delegate和事件處理方法 selector 本例用nstimer...