Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
クイズ アプリケーションに、クイズ全体のカウント ダウン タイマーを含めたいと考えています。カウントダウンタイマーの実装に関するリンクやアイデアを誰かに教えてもらえますか?
int seconds = time % 60; int minutes = (time - seconds) / 60; theTimer.text = [NSString stringWithFormat:@"%d:%.2d", minutes, seconds];