2013-04-01 132 views
-2

我想在iOS中的某個方法中編寫一些代碼,並且該方法應該每1秒調用一次。 任何人都可以幫助我做到這一點。 在此先感謝。如何在iOS中每1秒自動調用一次方法?

+5

查找'NSTimer' – borrrden

+1

這是很常見的問題。不需要問這裏。你可以通過搜索谷歌或SO老問題找到這個很容易。 http://stackoverflow.com/questions/5674375/calling-a-method-after-each-60-seconds-in-iphone http://stackoverflow.com/questions/446717/how-can-i-create-a -count-down-timer-for-cocos2d – CRDave

回答

3
[NSTimer scheduledTimerWithTimeInterval:1.0 
    target:self 
    selector:@selector(thisIsCalledEvery1Second:) 
    userInfo:nil 
    repeats:YES]; 

閱讀蘋果文檔的NSTimer

+0

在哪裏添加此代碼 – vijay

+0

@vijay添加你想要觸發的動作action.viewdidload或按鈕動作 –

+0

Timer.scheduledTimer(withTimeInterval:,repeatats:true,block:{(timer)in (「花了一秒鐘」) }) – srivas

相關問題