游戏中心没有在领导者iPhone上显示分数

时间:2013-04-15 11:40:11

标签: iphone ios objective-c xcode game-center

我已经在我的项目中集成了游戏中心,我可以登录游戏中心并可以打开引导板,但它没有显示任何分数。我试图在排行榜中提交分数并且它返回成功,但它没有显示在那里。

提交分数

-(void)submitScore
{
    GKScore *myScoreValue = [[[GKScore alloc] initWithCategory:@"something"] autorelease];
    myScoreValue.value = [prefs integerForKey:@"total"];

    [myScoreValue reportScoreWithCompletionHandler:^(NSError *error){
        if(error != nil){
            NSLog(@"Score Submission Failed");
        } else {
            NSLog(@"Score Submitted");
        } 
    }];
}

我搜索了这个问题,发现thisthis 我试过了两次但没有工作。

我正在启动应用程序。

<Info>: 16:39:10.550238 com.apple.AVConference: GKSConnSettings: set server: {
    "gk-cdx" = "17.173.254.218:4398";
    "gk-commnat-cohort" = "17.173.254.220:16386";
    "gk-commnat-main0" = "17.173.254.219:16384";
    "gk-commnat-main1" = "17.173.254.219:16385";
}

我的代码有什么问题吗?

1 个答案:

答案 0 :(得分:1)

给你的一些注意事项

« Make sure leaderboard is setup in iTunesConnect with Id: something

« Login gamecenter app with testUser from same iTunesConnect account

« Try myScoreValue.value = 500 once, sometimes small values are neglected in sandbox mode.

« Confirm - Logged in to sandbox mode

enter image description here