Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When i try tu Authenticate in Game Center, mi app show me Game Center Window, ok it is work fine, but mi program closed , then when i finally log in , or cancel Game Center Window, not return the game. game show, but not aviable, not touches, not nothing, i dont know what happen, :( my code:

public void CheckAuthenticate() {

        // This shows how to authenticate on both iOS 6.0 and older versions
        //
        if (UIDevice.CurrentDevice.CheckSystemVersion (6, 0)) {
            //
            // iOS 6.0 and newer
            //
            GKLocalPlayer.LocalPlayer.AuthenticateHandler = (ui, error) => {

                // If ui is null, that means the user is already authenticated,
                // for example, if the user used Game Center directly to log in

                if (ui != null)
                {
                    PlayerAuthenticate = false;

                    cont = UIApplication.SharedApplication.Windows[0].RootViewController;

                    cont.PresentViewController(ui,true,null);


                }
                //current.PresentModalViewController (ui, true);
                else {
                    // Check if you are authenticated:
                    var authenticated = GKLocalPlayer.LocalPlayer.Authenticated;
                    PlayerAuthenticate = true;
                }
                //Console.WriteLine ("Authentication result: {0}",err);
            };

        } else {
            // Versions prior to iOS 6.0
            GKLocalPlayer.LocalPlayer.Authenticate ((err) => {
                Console.WriteLine ("Authentication result: {0}",err);
            });
        };



    }

Thanks in advance,

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.