How would I go about adding a simple 2 minute timer to my app in almost the exact same way that the clock app does? I just want the user to click start and have the timer start displaying the timer counting down from 2:00 and beep when it hits 0:00.
|
|
|
This may be exactly what you want Orientation aware clock tutorial |
|||
|
|
|
I have created some basic code for generating a timer this method will be called when user selects start timer
} This method will be called when the timer is triggered
} This Method will be called to decrement time by one minute
} This method will be called to decrement the time by one second
} This method is called when timer reaches Zero
} Hope the code helps, and one important thing "timer","minutesValue" and "secondsValue" are instance variables. |
|||
|
|
|
I wrote this yesterday, you may find it helpful. It's a method for pulling hours, minutes, and seconds out of a NSTimeInterval (which is a struct double representing the number of seconds between two times--in this case,
Then elsewhere I set a timer to call this method once a second. Timers aren't guaranteed to run at their exact specific time, which is why you can't just count down some static variable, or you run the risk of accumulating errors over time. Instead you actually have to do new time math each call. Be sure you keep a pointer to your timer and invalidate it when your viewcontroller goes away! |
|||
|
|
