-2

20分から始めて19分、18分など(秒ではなく分のみ)を使用して、時間のカウントダウンを設定したいのですがNSTimer、この経過時間はテキストファイルに表示されます。助けてください。

前もって感謝します

4

1 に答える 1

-1

次のようなタイマーを作成する必要があります。

NSTimer *myTimer = [NSTimer scheduledTimerWithTimeInterval:60 target: self selector:@selector(time:) userInfo: nil repeats: true];
//the timer takes seconds, so by feeding it 60, it will tick every minute

次に、time:関数は次のようになります。

- (void)time:(NSTimer *)timerObject{
    //do whatever needs to be done every minute, like updating your UI
    //and subtracting from your counter variable
}

(timerObjectを使用する必要はありません)

于 2012-10-24T02:03:05.520 に答える