I've got very simple game that I'm trying to connect to Game Center.

After calling:

GKLocalPlayer *localPlayer = [GKLocalPlayer localPlayer];
[localPlayer authenticateWithCompletionHandler:^(NSError *error) {

}];

First time, Game Center dialog comes up asking for username and password and after that the whole Game Center windows slides up to set up account.

The problem is that my game is still running underneath that window and I just can not find any notifications to pause it.

viewWillDisappear, viewDidDisappear in UIViewController don't get called; applicationWillResignActive in AppDelegate is not called either.

Is there any way to detect that Game Center windows shows up?

link|improve this question

35% accept rate
feedback

1 Answer

Could you start the game after the user is authenticated?

Here would be an example from Apple's Docs (http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/GameKit_Guide/Users/Users.html)

- (void) authenticateLocalPlayer
{
    GKLocalPlayer *localPlayer = [GKLocalPlayer localPlayer];
    [localPlayer authenticateWithCompletionHandler:^(NSError *error) {
         if (localPlayer.isAuthenticated)
         {
             // Start Game
         }
     }];
}
link|improve this answer
I don't think this would work for most of the game. Particularly, my game doesn't depend on GameCenter at all, it's used only optionally. The only problem is just to pause game when GameCenter window comes up – Dmitry Sep 19 '11 at 22:07
feedback

Your Answer

 
or
required, but never shown

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