Im extending my game with Game Center turn based matches. However my game got 4 game mode and I woud like to make a Multiplayer mode for all. I have successfully made the first mode however if I try to load an another GKTurnBasedMatchMakerViewController I get the same matches and same game as in the first mode. Is there any way to make different type of matches inside one game?
Asked
Active
Viewed 98 times
1 Answers
1
This is possible with the playerGroup property of a GKMatchRequest
. When you assign it to the request it will create a match only if it can find another player with a match request of the same group. Read GKMatchRequest Class Reference for more information.

Adam
- 26,549
- 8
- 62
- 79
-
Thanks, it helped a lot :). However I have another question: Is it possible to list the active games depends on the playGroup? Or just display the game modes seperated. – user3341586 Apr 27 '14 at 09:58