游戏中心有问题吗?我一直在通过正常工作的沙盒帐户测试我的应用多人游戏。但是自上周末以来,没有收到任何发送的邀请,或者我收到“无法连接”的消息。 '现在玩'工作正常,但现在也没有用。有人遇到同样的问题吗?我可以在任何地方查看游戏中心状态吗?这让我发疯了
当我点击立即播放按钮时,它会直接进入此方法:
- (void)matchmakerViewController:(GKMatchmakerViewController *)viewController didFindMatch:(GKMatch *)theMatch {
[self.presentingViewController dismissModalViewControllerAnimated:YES];
self.match = theMatch;
self.match.delegate = self;
NSLog(@"Peer-to-Peer");
if (!matchStarted && self.match.expectedPlayerCount == 0) {
NSLog(@"Ready to start match! from matchmakerviewcontroller");
[self lookupPlayers];
}
}
当它工作时,我曾经进入'if'部分。现在我收到的expectedPlayerCount是1,就好像它没有找到任何玩家一样。怎么样?
谢谢你的到来。