-3

In my quiz application , I want to include a count down timer for the entire quiz. Can anyone give me link or any idea regarding implementation of a count down timer ?

IronManGill
  • 7,222
  • 2
  • 31
  • 52
iosdev
  • 277
  • 8
  • 19
  • 2
    This is quite a broad question. Have you tried anything or do you have a specific area that is giving you trouble? Have you looked at NSTimer? [What have you tried?](http://whathaveyoutried.com) – Abizern Oct 01 '12 at 06:45
  • first you have tried to search any link for it ??? if yes then give us too :) and if no then please try more and more you will be success :) –  Oct 01 '12 at 06:47

1 Answers1

1
int seconds = time % 60;
int minutes = (time - seconds) / 60;
theTimer.text = [NSString stringWithFormat:@"%d:%.2d", minutes, seconds];
Guru
  • 21,652
  • 10
  • 63
  • 102
  • @iosdev, u can get time in strings, follow this link..http://stackoverflow.com/questions/566265/retrieving-current-local-time-on-iphone – Guru Oct 01 '12 at 11:56