如何列出其他玩家的活跃游戏中心比赛?

时间:2013-01-03 17:24:01

标签: iphone ios game-center

我正在开展多人纸牌游戏。

使用此代码播放器添加新匹配:

-(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];

        }
    }];
}

如何列出其他玩家的所有有效比赛(房间)?

0 个答案:

没有答案