我想创建一个自定义的GKMatchMakerViewController
使用标准ViewController
(彩色气泡)进行编码:
if([GKLocalPlayer localPlayer].isAuthenticated){
GKMatchRequest *request = [[GKMatchRequest alloc] init] ;
request.minPlayers = 2;
request.maxPlayers = 2;
GKMatchmakerViewController *MM = [[GKMatchmakerViewController alloc] initWithMatchRequest:request];
MM.matchmakerDelegate = self;
[self presentViewController:mmvc animated:YES completion:nil];
最佳答案
您需要从头开始创建自定义视图控制器。然后,您使用loadMatchesWithCompletionHandler:
方法加载匹配项。然后,您可以在控制器上显示匹配项,例如使用UITableView
。有关更多信息,请参见GKTurnBasedMatch Class Reference。
关于ios - 如何自定义GKMatchmakerViewController,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30054439/