菜鸟教程小白 发表于 2022-12-12 19:43:12

ios - Game Center 排行榜沙盒中仅显示一个结果 - 正常吗?


                                            <p><p>我在沙盒模式下的排行榜中显示了结果,但我希望每个结果都会出现。只显示一个结果。这正常吗?从最高到最低排序的排序选项似乎意味着应该显示多个结果。显示的是我的高分,如果超过分数就会更新。</p>

<p>只有一个结果显示我是否因此提出了 VC:</p>

<pre><code>- (void) presentLeaderboards {
   GKGameCenterViewController* gameCenterController = [ init];
   gameCenterController.viewState = GKGameCenterViewControllerStateLeaderboards;
   gameCenterController.gameCenterDelegate = self;
   ;
}
</code></pre>

<p>或者如果我使用 Game Center 应用程序。</p>

<p>这是我提交分数的方式:</p>

<pre><code>-(void) submitScore:(int64_t)score
         category:(NSString*)category {
   if (!_gameCenterFeaturesEnabled) {
      DLog(@&#34;Player not authenticated&#34;);
      return;
   }
   GKScore* gkScore =
   [
    initWithLeaderboardIdentifier:category];
   gkScore.value = score;
    withCompletionHandler:^(NSError *error) {
      if (error) {
         // handle error
      }
   }];
}
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><ol>
<li><p>“从最高到最低排序的排序选项似乎意味着应该显示多个结果”</p>

<ul>
<li>这不是那个意思。这意味着所有提交的分数(由所有玩家)将按从高到低或从低到高排序。</li>
</ul></li>
<li><p>因为您在 iTunes Connect 的排行榜设置中选择了高分。仅当玩家的分数高于之前的分数时才会更新玩家的分数,并且不会保存其他提交的分数。</p></li>
</ol></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Game Center 排行榜沙盒中仅显示一个结果 - 正常吗?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/22106898/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/22106898/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Game Center 排行榜沙盒中仅显示一个结果 - 正常吗?