iphone - Game Center 未在排行榜 iPhone 中显示分数
<p><p>我已经在我的项目中集成了游戏中心,我可以登录游戏中心并可以打开排行榜但它没有显示任何分数。我试图在排行榜中提交分数,它返回成功,但它没有显示在那里。</p>
<p>提交分数</p>
<pre><code>-(void)submitScore
{
GKScore *myScoreValue = [[ initWithCategory:@"something"] autorelease];
myScoreValue.value = ;
[myScoreValue reportScoreWithCompletionHandler:^(NSError *error){
if(error != nil){
NSLog(@"Score Submission Failed");
} else {
NSLog(@"Score Submitted");
}
}];
}
</code></pre>
<p>我已经搜索过这个问题,我发现 <a href="https://stackoverflow.com/questions/9121089/ios-game-center-sandbox-leaderboards-show-no-score" rel="noreferrer noopener nofollow">this</a>和 <a href="https://stackoverflow.com/questions/8720316/ios-game-center-scores-not-showing-on-leaderboard-in-sandbox?lq=1" rel="noreferrer noopener nofollow">this</a>
我都试过了,但都不行。</p>
<p>我在启动应用程序时得到这个。</p>
<pre><code><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";
}
</code></pre>
<p>我的代码有什么问题吗?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>给你的一些笔记</p>
<pre><code>« 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
</code></pre>
<p> <img src="/image/X24ss.png" alt="enter image description here"/> </p></p>
<p style="font-size: 20px;">关于iphone - Game Center 未在排行榜 iPhone 中显示分数,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/16014233/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/16014233/
</a>
</p>
页:
[1]