I have a toggle menu which toggle between the words "Pause" and "Resume" when it is pressed, which also pause and resume the whole game. This means when playing, the menu will be shown as "Pause" (tap here to pause), when pausing the menu will be shown as "Resume" (tap here to resume).

Here is the problem, if I tap the home button after I pause the game, then go back into it, it resumes itself and the pause menu is shown as "Resume". And this doesn't make sense to me. The best way I want is to pause the game whenever go into the background and resume from background. I look at the following methods, but they don't really work:

-(void)applicationWillResignActive:(UIApplication *)application{
}

- (void)applicationDidBecomeActive:(UIApplication *)application{
}

-(void)applicationWillEnterBackground:(UIApplication*)application{
}

-(void)applicationDidEnterBackground:(UIApplication *)application {
}

I even just put CCLOG in all of those methods, but nothing has been called. Is there something I am need to put/declare before I use those methods?

Sorry, it is a bit too long to read. Hope you can help me. Thank you.

link|improve this question

0% accept rate
You should consider marking your questions as correct as it encourages SO users to answer your questions. – Javy Feb 21 at 9:35
feedback

3 Answers

I'm not sure why, but for my experience (not cocos2d), there's no additional implementation if want apply those methods.

perhaps, you should try look at this.

link 1 & link 2

link|improve this answer
thank for the answer people i got this [link][1] and this link solved my issue thanks for the help by the way [1]: stackoverflow.com/questions/7214939/resume-game-cocos2d – Faizan Malik Feb 21 at 11:23
feedback
-(void)applicationWillResignActive:(UIApplication *)application{
}

- (void)applicationDidBecomeActive:(UIApplication *)application{
}

you need custom your cocos2d CCDIRECTOR class. And get now display layer. then active it pause or resume function. All this must need some protocol.

link|improve this answer
feedback

These methods are invoked when the iOS forces your application in the background, or resumes execution of your application, ie they are signals you receive when an external event causes your application to go to background, or come back from it. You should not try to invoke them directly. There is no real relationship with a 'user created' menu like yours (like your Resume/Pause menu), unless you make the relationship explicit.

So , in the following method:

- (void)applicationWillResignActive:(UIApplication *)application {
    NSLog(@"<%@>:applicationWillResignActive - received signal, pausing sharedDirector.",[self class]);

    // here : place your code for forcing your menu in the 'Resume' state
    // i am assuming some kind of change in a button,  and
    // a state variable of your own that define and control
    // what it means to be 'paused' from your applications point of
    // view

    // then force the director to pause (animations, scheduling, touch, etc ...)

    [[CCDirector sharedDirector] pause];
}

after, when the iOS hands you back control by placing your application in the forground as the running application:

- (void)applicationDidBecomeActive:(UIApplication *)application {
    NSLog(@"<%@>:applicationDidBecomeActive - received signal, resuming sharedDirector.",[self class]);

    [[CCDirector sharedDirector] resume];
}

You dont really need to do anything fancy here other than restart the CCDirector, since your menu is in the 'Resume' state, garanteed. When user presses Resume, you will start your game again and put the menu in the 'Pause' state.

link|improve this answer
oups, just saw your comment saying you had solved your issue. As a side note, you should either accept an answer, of answer it yourself so you can accept your own answer. This way, the question will be marked as answered, and not attract further answers just as i did :) – YvesLeBorg Feb 21 at 14:41
feedback

Your Answer

 
or
required, but never shown

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