これで、サンドボックス アカウントからスコアを送信したという点でリーダー ボード タスクができましたが、スコアは 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];
}
}];
}