您可以一次在 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];
}];