I have an application that contains only this:
- (void)viewDidLoad
{
[super viewDidLoad];
[[GKLocalPlayer localPlayer] authenticateWithCompletionHandler:^(NSError *error)
{
[GKTurnBasedMatch loadMatchesWithCompletionHandler:^(NSArray *matches, NSError *error)
{
}];
}];
}
And right away I get a ton of leaks. Am I doing something wrong? I am using ARC.

source
share