November 2011
Beginner
238 pages
6h 19m
English
With the release of iOS 5.0, Apple added the ability to automatically try to reinivite a disconnected player. This method is only supported in two-person Game Center matches. The following method is called when a player is disconnected; Game Center will automatically try to reconnect to that player. If successful, you will receive an additional call to match:player:didChangeState:. This functionality is only available in iOS 5 or greater.
-(BOOL)match:(GKMatch *)match shouldReinvitePlayer:(NSString *)playerID
{
return YES;
}