IOS7版本中GameCenter的一个bug的解决方法

       

        最近写了小游戏,添加GameCenter功能的过程中出现一个问题,虚拟机调试没有问题,但是,真机就会报这个错误: 

        GameCenter Authentication Error: Error Domain=GKErrorDomain Code=2 “The requested operation has been cancelled or disabled by the user.” UserInfo=0x17d489f0 {NSLocalizedDescription=The requested operation has been cancelled or disabled by the user.}, { NSLocalizedDescription = “The requested operation has been cancelled or disabled by the user.”; }

         注意,可不是:

        GKErrorDomain Code=2 "The requested operation has been cancelled." 

    网上盛传的所谓的解决方式:

          [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"gamecenter:"]]; 

   也解决不了,卡了好长时间,后来找到了解决方法,就是把测试机:“设置”->"通用设置"-"还原"->"还原掉所有设置",等完事之后,重新在真机测试,问题解决,感谢:

          http://ishamrock.com/post/66808377466/beware-of-canceling-the-ios-7-game-center-sandbox-login


         转载请注明 :http://blog.csdn.net/guoranliaoran/article/details/20238927

你可能感兴趣的:(ios开发)