2

マルチプレイヤーカードゲームに取り組んでいます。

このコードでプレーヤーは新しいマッチを追加しています:

-(void)addNewMatch {

    NSLog(@"addNewMatch");

    GKMatchRequest *request = [[GKMatchRequest alloc] init];

    request.maxPlayers = 2;
    request.minPlayers = 2;

    [GKTurnBasedMatch findMatchForRequest:request withCompletionHandler:^(GKTurnBasedMatch *match, NSError *error) {
        if (error) {
            NSLog(@"%@", error.localizedDescription );
        } else {
            NSLog(@"match found!");
            [self.vc dismissViewControllerAnimated:YES completion:nil];
            [[GCTurnBasedMatchHelper sharedInstance] turnBasedMatchmakerViewController:nil didFindMatch:match];

        }
    }];
}

他のプレイヤーのアクティブなマッチ (ルーム) をすべて一覧表示するにはどうすればよいですか?

4

0 に答える 0