I think that I'm facing the same issue,
Till now I succeded to :
- Connect to GameCenter.
- To submit scores to different leaderboards
- To view high scores.
Now for multiplayer, I have the following issues :
- Auto Match list is empty after I request a auto match, It have only the possibility to invite friends and this is also not working. see 2
- when sending an invitation to a friend,
- From the simulator : I have a failed status.
- From real device it shows an infinite loop till I stop it using UnInvite friend.
Here After steps that I followed.
I tried to follow hints from apple docs but some thing still wrong in my code.
So I proceeded like this.
- I use the same apps version on both device & simulator.
- I authenticate successfully on both devices.
- In one of devices I request a match make using following code.
myCode
(IBAction)hostMatch: (id) sender
{
GKMatchRequest *request = [[[GKMatchRequest alloc] init] autorelease];
request.minPlayers = 2;
request.maxPlayers = 2;
GKMatchmakerViewController *mmvc = [[[GKMatchmakerViewController alloc] initWithMatchRequest:request] autorelease];
mmvc.matchmakerDelegate = self;
[self presentModalViewController:mmvc animated:YES];
}
This views a controller view of GameCenter with a ready status of the local player and an empty auto-match zone with only a button Invite Friend.
If I select Invite Friend this shows another controller view with list of my friends. Once I select one of them and I click send invitation
- From the simulator : I have a failed status.
- From real device it shows an infinite loop till I stop it using UnInvite friend.
verified al steps, I don't know what's wrong, This my code used after notification to set invitation handler.
Your help is appreciated.
-(void) AuthenticateToGameCenter
{
BOOL bResult = FALSE;
bResult = isGameCenterAvailable();
if (bResult == TRUE)
{
NSLog(@"GameCenter : Is Supported");
[[GKLocalPlayer localPlayer] authenticateWithCompletionHandler:^(NSError *error) {
if (error == nil)
{
// Insert code here to handle a successful authentication.
NSLog(@"GameCenter : Authentification OK");
// Add block for invitation handler
[GKMatchmaker sharedMatchmaker].inviteHandler = ^(GKInvite *acceptedInvite, NSArray *playersToInvite) {
// Insert application-specific code here to clean up any games in progress.
if (acceptedInvite)
{
GKMatchmakerViewController *mmvc = [[[GKMatchmakerViewController alloc] initWithInvite:acceptedInvite] autorelease];
mmvc.matchmakerDelegate = self;
[self presentModalViewController:mmvc animated:YES];
}
else if (playersToInvite)
{
GKMatchRequest *request = [[[GKMatchRequest alloc] init] autorelease];
request.minPlayers = 2;
request.maxPlayers = 2;
request.playersToInvite = playersToInvite;
GKMatchmakerViewController *mmvc = [[[GKMatchmakerViewController alloc] initWithMatchRequest:request] autorelease];
mmvc.matchmakerDelegate = self;
[self presentModalViewController:mmvc animated:YES];
}
};
}
else
{
// Your application can process the error parameter to report the error to the player.
NSLog(@"GameCenter : Error in Authentification");
}
}];
}else
{
NSLog(@"GameCenter : Is Not Supported");
}
}