我使用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