如何使用GKMatchmaker ???我收到了一些错误

时间:2018-06-12 03:08:31

标签: gamekit gkmatchmaker

我使用gamekit将玩家与我的游戏匹配;但是发生了一些错误。

herr是代码:

 GKMatchRequest *request = [[GKMatchRequest alloc] init];
request.minPlayers = 1;
request.maxPlayers = 4;

[[GKMatchmaker sharedMatchmaker] cancel];
GKMatchmakerViewController *vc = [[GKMatchmakerViewController alloc] initWithMatchRequest:request];
vc.matchmakerDelegate = [self shareInstance];

[rootViewController presentViewController:vc animated:YES completion:nil];

这是错误;

Error Domain=GKErrorDomain Code=13 "未能完成所请求的操作,因为配对请求无效。" UserInfo={NSLocalizedDescription=未能完成所请求的操作,因为配对请求无效。}

请求帮助。 THX

0 个答案:

没有答案