I'm playing with the Game Kit API and I have a very simple block of code that never returns, not even with an error...
GKLeaderboard *pointsRequest = [[GKLeaderboard alloc] initWithPlayerIDs:[match playerIDs]];
if (pointsRequest != nil)
{
//Set the points leaderboard category id
[pointsRequest setCategory:kPOINTS_LEADERBOARD_ID];
[pointsRequest loadScoresWithCompletionHandler: ^(NSArray *scores, NSError *error)
{
if (error != nil) //THIS LINE NEVER GETS HIT
{
NSLog(@"%@", [error localizedDescription]);
}
if (scores != nil) //NOR DOES THIS LINE
{
.
.
.
Since there's no error, I'm unsure of how to even troubleshoot this. Does anyone have any ideas what's wrong or how I can further investigate what's wrong?
Thanks so much for your wisdom!
UPDATE: I was finally able to get this block of code to return, tho I don't fully understand why. To get it to return, I posted a score to the leaderboard shortly before trying to retrieve it. What's strange is I had a score posted there before, so I don't know why posting a score had any effect on this problem.