How do you create a time elapsed button in objective-c iphone SDK. To be a little more specific, this button will show in text how much time has elapsed since you've been holding the button. So for the time to elapse you must still have a finger on the button, not letting go. Once you let go the timer should restart. Note: For the iphone, not mac.
|
|
Use these two methods for buttons events.
|
|||
|
|
|
first, set an int variable at your header file
dont forget to synthesize it at the implementation file (if you're still on lower SDK, you can change "strong" to "retain") and then make the button and it's function
this way, you've add a button at x:0 y:0 on your view with red color, containing two action target which is touch down and up inside when you touch the button, the buttonHoldDown function is triggered, and when u release the button, the buttonRelease function is triggered and then, fill the function
this way, when you touch the button, the program creates a timer and revalue the int timerCount to 0, which will be increased as the timer ticks in the "timerStart" function. as you release the button, the function will track your current timerCount record and print it on the system, and then stop the timer |
|||
|
|