8

在我的应用程序中突然收到此消息 -

   <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";
     }

它来自哪里?

4

2 回答 2

2

在 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

于 2013-04-29T19:34:47.060 回答
0

我的第一直觉告诉我这可能与您的环境有关。您是否偶然在虚拟机上工作?这恰好是我的情况。

于 2012-09-26T16:34:13.753 回答