2012-10-01 77 views
-3

在我的測驗應用程序中,我想包含整個測驗的倒數計時器。任何人都可以給我鏈接或關於倒數計時器的實現的任何想法?如何爲測驗應用程序實現倒數計時器?

+2

這是一個相當廣泛的問題。你有沒有嘗試過任何東西,或者你有一個特定的區域給你帶來麻煩?你看過NSTimer嗎? [你有什麼嘗試?](http://whathaveyoutried.com) – Abizern

+0

首先你試圖搜索任何鏈接?如果是的話,也給我們:)如果沒有,那麼請嘗試越來越多,你會成功:) – 2012-10-01 06:47:20

回答

1
int seconds = time % 60; 
int minutes = (time - seconds)/60; 
theTimer.text = [NSString stringWithFormat:@"%d:%.2d", minutes, seconds]; 
+0

時間和秒? – iosdev

+0

@iosdev,你可以得到時間的字符串,請按照此鏈接..http://stackoverflow.com/questions/566265/retrieving-current-local-time-on-iphone – Guru

相關問題