Game center account services are currently unavaiable for iOS Simulator

来源:互联网 发布:淘宝售后是多少天 编辑:程序博客网 时间:2024/05/08 22:42

在模拟器上(game center sandbox中)用gamekit创建account的时候,会弹出Game center account services are currently unavaiable的对话框。可是明明simulator上是可以上网的。原来是由于hosts文件中的dns相关引起的。

解决方法是,打开终端,输入:

sudo vim /private/etc/hosts

然后是否有

127.0.0.1      crl.verisign.net127.0.0.1      CRL.VERISIGN.NET.*127.0.0.1      OCSP.SPO1.VERISIGN.COM


如果出现了上面这些行,那么把它们都注释掉,如

#127.0.0.1      crl.verisign.net#127.0.0.1      CRL.VERISIGN.NET.*#127.0.0.1      OCSP.SPO1.VERISIGN.COM

然后重新运行你的程序,是不是一切正常了呢?这个应属于Apple的bug吧,好像Apple是当bug处理了。









原创粉丝点击