次のようなオンライン ゲームを開始します。
request = [[[GKMatchRequest alloc] init] autorelease];
request.minPlayers = 2;
request.maxPlayers = 2;
mmvc = [[[GKMatchmakerViewController alloc] initWithMatchRequest:request] autorelease];
デリゲート メソッドを受け取ったら:
- (void)matchmakerViewController:(GKMatchmakerViewController *)viewController didFindMatch:(GKMatch *)match
プレイヤーが自動対戦を選択したか、友達を招待したかを知る方法。
よろしくお願いします。