奇怪的游戏中心行为?

发布于 2024-12-27 12:41:24 字数 752 浏览 2 评论 0原文

我正在尝试为我的 iPad 游戏启用 Game Center 排行榜,并且我了解到您需要将多个分数发布到排行榜,以便分数显示在默认排行榜 UI 中。

我有两个独立的帐户,我曾经将两个不同的分数发布到同一个排行榜,但是当我调用 loadScoresWithCompletionHandler 时,我只得到一个分数(我当前登录的用户的分数)。

有什么想法吗?

GKLeaderboard *myLB = [[GKLeaderboard alloc] init];

myLB.category = @"MyLeaderboardId";
myLB.timeScope = GKLeaderboardTimeScopeAllTime;
myLB.playerScope = GKLeaderboardPlayerScopeGlobal;
myLB.range = NSMakeRange(1, 100);

[myLB loadScoresWithCompletionHandler:^(NSArray *scores, NSError *error) {
    if (error != nil)
    {
         NSLog(@"%@", [error localizedDescription]); 
    }

    if (scores != nil)
    {
        for (GKScore *score in scores)
        {
            NSLog(@"%lld", score.value);
        }
    }
}];

I'm trying to enable Game Center Leaderboard to my iPad game and I have learned that you need to post more than one score to a leaderboard for the scores to show in the default leaderboard UI.

I have two separete accounts that I used to post two different scores to the same leaderboard, but when I call loadScoresWithCompletionHandler I only get one score back (the score for the user I currently are logged in with).

Any ideas why?

GKLeaderboard *myLB = [[GKLeaderboard alloc] init];

myLB.category = @"MyLeaderboardId";
myLB.timeScope = GKLeaderboardTimeScopeAllTime;
myLB.playerScope = GKLeaderboardPlayerScopeGlobal;
myLB.range = NSMakeRange(1, 100);

[myLB loadScoresWithCompletionHandler:^(NSArray *scores, NSError *error) {
    if (error != nil)
    {
         NSLog(@"%@", [error localizedDescription]); 
    }

    if (scores != nil)
    {
        for (GKScore *score in scores)
        {
            NSLog(@"%lld", score.value);
        }
    }
}];

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疯到世界奔溃 2025-01-03 12:41:24

它对我来说效果很好。只需在另一个帐户下添加分数即可。

我得到了

scores (
"<GKScore: 0x960e3e0><0x960e3e0> player=G:1208389607 rank=1 date=2012-01-19 12:56:47 +0000 value=27 formattedValue=27 context=(null)",
"<GKScore: 0x96a1bc0><0x96a1bc0> player=G:1176161436 rank=2 date=2012-01-19 08:35:06 +0000 value=16 formattedValue=16 context=(null)"

:)

并且通过标准控制器居中显示相同的结果。

谢谢,

It works fine for me. Just add scores under another account.

I've got:

scores (
"<GKScore: 0x960e3e0><0x960e3e0> player=G:1208389607 rank=1 date=2012-01-19 12:56:47 +0000 value=27 formattedValue=27 context=(null)",
"<GKScore: 0x96a1bc0><0x96a1bc0> player=G:1176161436 rank=2 date=2012-01-19 08:35:06 +0000 value=16 formattedValue=16 context=(null)"

)

And center by standard controller show same results.

thanks,

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文