我的游戏中心游戏,经过身份验证,用于测试我正在向排行榜发送一个明显不存在于iTunes Connect页面中的分数:
// Successful authentication here
[self reportScore:1000 forLeaderboardID:@"blah blah blah blah"];
以下是方法:
-(void)reportScore:(int64_t)score forLeaderboardID:(NSString*)category {
GKScore *scoreReporter = [[GKScore alloc] initWithCategory:category];
scoreReporter.value = score;
scoreReporter.context = 0;
[scoreReporter reportScoreWithCompletionHandler:^(NSError *error) {
if (error == NULL) {
NSLog(@"Score sent successfully");
} else {
NSLog(@"Score submission failed: %@",[error localizedDescription]);
}
}];
}
我正在
分数成功发送
为什么呢?我在游戏中肯定没有这样的排行榜。
一些事实: