菜鸟教程小白 发表于 2022-12-13 14:35:26

ios - 是否可以在 GameKit 对手准备好时发出警报?


                                            <p><p>我使用 GameKit 制作了一款游戏,我正在使用该框架来管理两个对手之间的实时比赛。如果我邀请一个特定的人参加比赛,或者确保他们和我同时“等待对手”,比赛和比赛就会顺利进行,一切都很好。</p>

<p>我现在遇到的问题是我的应用程序上还没有很多人,所以想要与一个随机对手对战的人也想玩,没有任何方法知道什么时候一场比赛可能已经准备好了。 </p>

<p>有没有办法利用 GameKit,但增强体验,以便在发现对手时发送推送通知或某种警报?可能这都是内置的,但我什么也没看到。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>AFAIK,GameKit 不支持在您的应用未运行时推送通知以匹配实时游戏。</p>

<p>但是,GameKit 有一个 <a href="https://developer.apple.com/library/ios/documentation/NetworkingInternet/Conceptual/GameKit_Guide/Matchmaking/Matchmaking.html#//apple_ref/doc/uid/TP40008304-CH9-SW2" rel="noreferrer noopener nofollow">Player Activity</a> API 告诉您在过去 60 秒内请求了多少场比赛,您可以使用该数字创建信息性消息或状态以显示玩家。</p>

<p>编辑:有问题的方法是</p>

<pre><code>- queryActivityWithCompletionHandler:
- queryPlayerGroupActivity:withCompletionHandler:
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 是否可以在 GameKit 对手准备好时发出警报?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/35496005/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/35496005/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 是否可以在 GameKit 对手准备好时发出警报?