现在我有排行榜任务,因为我已经通过我的沙盒帐户提交了我的分数,但是我的分数在 18 小时后更新,并且一些延迟只有其他人才能看到我的分数....
我已经实施了所有代表......但我仍然遇到同样的问题......
关于这个的任何想法请分享....
建议高度赞赏...
提前致谢....
我的代码块:-
- (void) reportScore: (int64_t) score forCategory: (NSString*) category
{
GKScore *scoreReporter = [[GKScore alloc] initWithCategory:category];
scoreReporter.value = score*50;
[scoreReporter reportScoreWithCompletionHandler: ^(NSError *error)
{
if (error != nil)
{
NSLog(@"reportScore: error!");
}
else
{
NSLog(@"reportScore: successful!");
[self callDelegateOnMainThread: @selector(scoreReported:) withArg: self error: error];
}
}];
}