ios – xcode控制台中的GKSConnSettings消息

ios – xcode控制台中的GKSConnSettings消息,第1张

概述我的应用程序突然收到此消息 – <Info>: 22:20:44.800330 com.apple.AVConference: GKSConnSettings: set server: { "gk-cdx" = "17.173.254.218:4398"; "gk-commnat-cohort" = "17.173.254.220:16386"; 我的应用程序突然收到此消息 –
<Info>: 22:20:44.800330 com.apple.AVConference: GKSConnSettings: set server: {        "gk-cdx" = "17.173.254.218:4398";        "gk-commnat-cohort" = "17.173.254.220:16386";        "gk-commnat-main0" = "17.173.254.219:16384";        "gk-commnat-main1" = "17.173.254.219:16385";     }

它来自哪里?

解决方法 在iOS 6.0中,只要localPlayer经过身份验证(即设置),此日志就会显示出来
[GKLocalPlayer localPlayer].authenticateHandler = ^(UIVIEwController *vIEwController,NSError *error) {        if (vIEwController != NulL) {            // present the vIEwController Now        } else if ([GKLocalPlayer localPlayer].isAuthenticated) {            NSLog(@"Already authenticated");        } else {            NSLog(@"Not authenticated,disable GameCenter");        }    };

并在必要时显示vIEwController以登录GameCenter

总结

以上是内存溢出为你收集整理的ios – xcode控制台中的GKSConnSettings消息全部内容,希望文章能够帮你解决ios – xcode控制台中的GKSConnSettings消息所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1103934.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存