Hello, I am developing a 2d iphone game by using cocos2d. I need a countdown timer. Plz tell me, How can I create a count down Timer in cocos2d ?
|
1
|
|
|
|
|
|
Use NSTimer. It will call a method every x seconds (x specified when creating the timer) This example calls the method changeTime every 1 second
|
||||
|
|
|
Not enough rep to upvote Tom, but he's absolutely right. Within the context of this question, NSTimer is the WRONG solution. The Cocos2d framework provides a scheduler that integrates with other game features like Pause/Resume (and most likely uses NSTimer under the hood). Example from the above link:
|
||
|
|
|
|
Look at NSTimer, it can most likely provide any needed timer functionality. |
||
|
|
