GameCenterにすべてのプレーヤーのスコアを一度に投稿できますか?APIでは現在のプレーヤーにのみ投稿できるようです。現在のプレーヤーがGameCenterで他のプレーヤーに投票/スコアリングできるようにする投票機能を実装しようとしています。
GKScore* gkScore = [[GKScore alloc] initWithCategory:category];
gkScore.value = score;
// ??? Score for current player ONLY - how to record score for other players ???
[gkScore reportScoreWithCompletionHandler:
^(NSError* error) {
....
BOOL success = (error == nil);
[delegate onScoresSubmitted:success];
}];