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,