游戏中心:通用应用程序中适用于 iPhone/iPad 的单独排行榜

发布于 2024-10-30 22:20:19 字数 123 浏览 0 评论 0原文

是否可以在通用应用程序中为 iPad 和 iPhone 提供单独的游戏中心排行榜?

iPhone 上的游戏中心应用程序应专门显示在 iPhone 上获得的分数。在 iPad 上查看时,它应该只显示 iPad 分数。

Is it possible to have a separate game center leaderboard for iPad and iPhone in a universal application?

The game center app on iPhone should exclusively show the scores achieved on the iPhone. When viewed on iPad it should only show the iPad scores.

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

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

发布评论

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

评论(1

陪你搞怪i 2024-11-06 22:20:19

是的,你可以。在 iTunes Connect 中创建 2 个单独的排行榜,然后当您发布分数时,检查设备是否是 iPhone 或 iPad

if(UI_USER_INTERFACE_IDIOM == UIUserInterfaceIdiomPad) {
//iPad
} else {
//it's an iPhone 
}

并分配适当的标识符。

该代码应该可以编译(但我可能在某个地方犯了错字)

Yes, you can. Create 2 separate leaderboards in iTunes Connect, then when you post your score, check if the device is an iPhone or iPad

if(UI_USER_INTERFACE_IDIOM == UIUserInterfaceIdiomPad) {
//iPad
} else {
//it's an iPhone 
}

and assign the appropriate identifier.

That code should compile (but I might've made a typo somewhere)

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