vote up 1 vote down star
1

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 ?

flag

22% accept rate

4 Answers

vote up 0 vote down check

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

NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(changeTime:) userInfo:nil repeats:YES];

-(void)changeTime:(NSTimer *)theTimer{
if(timeLeft==0){
	return;
}
else{
	timeLeft = timeLeft - 1;
	if(timeLeft==0){
		[theTimer invalidate];
		[self goToNextExercise];
	}
}
label.text = [NSString stringWithFormat:@"%i",timeLeft];
}
link|flag
Thanks for ur answer. its working.... – Nahid Jan 22 at 10:31
This is the wrong way to do this using cocos2d, You need to do what others have said and use the [self schedule:] stuff. The biggest reasons are that using NSTimer will not support cocos2d pause, start, stop commands whild schedule will. – Solmead Jun 25 at 19:46
vote up 6 vote down

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:

-(id) init
{
    if( ! [super init] )
    	return nil;

    // schedule timer
    [self schedule: @selector(tick:)];
    [self schedule: @selector(tick2:) interval:0.5];

    return self;
}

-(void) tick: (ccTime) dt
{
    // bla bla bla
}

-(void) tick2: (ccTime) dt
{
    // bla bla bla
}
link|flag
vote up 1 vote down

Look at NSTimer, it can most likely provide any needed timer functionality.

NSTimer class reference

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.