我发起一个这样的在线游戏:
request = [[[GKMatchRequest alloc] init] autorelease];
request.minPlayers = 2;
request.maxPlayers = 2;
mmvc = [[[GKMatchmakerViewController alloc] initWithMatchRequest:request] autorelease];
当我收到委托方法时:
- (void)matchmakerViewController:(GKMatchmakerViewController *)viewController didFindMatch:(GKMatch *)match
如何知道玩家是选择了自动匹配还是邀请了朋友。
感谢提前。