マルチプレイヤーゲームがオートマッチによって開始されたのか、友達を招待したのかを特定するにはどうすればよいですか?
試合開始時にこのメソッドが呼び出されました。
- (void)matchmakerViewController:(GKMatchmakerViewController *)viewController didFindMatch:(GKMatch *)theMatch {
[presentingViewController dismissModalViewControllerAnimated:YES];
self.match = theMatch;
match.delegate = self;
if (!matchStarted && match.expectedPlayerCount == 0) {
NSLog(@"Ready to start match!");
[self lookupPlayers];
}
}
基本的に私はこれが欲しいです(このリンクをチェックしてください)-マルチプレイヤーゲームでデータを同期する方法(game-centerios)