Q:我们如何设置默认玩家人数?
让我们创建一个带有匹配请求的 GKTurnBasedMatchmakerViewController:
GKMatchRequest *request = [GKMatchRequest new];
request.minPlayers = 2;
request.maxPlayers = [GKMatchRequest maxPlayersAllowedForMatchOfType:GKMatchTypeTurnBased];
request.defaultNumberOfPlayers = 2;
GKTurnBasedMatchmakerViewController *controller = [GKTurnBasedMatchmakerViewController.alloc initWithMatchRequest:request];
controller.turnBasedMatchmakerDelegate = self;
[GKDialogController sharedDialogController].parentWindow = self.view.window;
[[GKDialogController sharedDialogController]presentViewController:controller];
预期:2 个默认玩家
实际:16 个默认玩家
GKMatchRequest 类参考
GKMatchRequest 对象用于指定新的实时或回合制比赛的参数。您初始化一个匹配请求对象,然后将其传递给另一个对象以实际创建匹配。您将其传递给的对象类型取决于您想要的匹配类型以及是否要显示标准匹配用户界面。
@property(nonatomic, assign) NSUInteger defaultNumberOfPlayers
比赛的默认玩家人数。
如果未设置此属性,则默认玩家数等于存储在 maxPlayers 属性中的值。默认玩家数量决定了标准匹配用户界面中显示的受邀者数量。玩家可以选择覆盖它以添加或删除插槽。