ios 中的 google Play 游戏排行榜
Posted
技术标签:
【中文标题】ios 中的 google Play 游戏排行榜【英文标题】:google Play game Leaderboard in ios 【发布时间】:2017-09-22 23:21:21 【问题描述】:I have used Google play game leaderboard in my ios app.i am submitting score from my and fetch score from there. i am using following method to submit score
`[score submitScoreWithCompletionHandler: ^(GPGScoreReport *report, NSError *error)
if (error)
// Handle the error
else
// Analyze the report, if you'd like
];`
and below code to present leaderboard
NSString *targetLeaderboardId = @"my id";
[[GPGLauncherController sharedInstance] presentLeaderboardWithLeaderboardId:targetLeaderboardId];
但是获取分数需要很长时间。有没有办法重新加载或刷新排行榜数据。
任何人都有任何想法!
【问题讨论】:
【参考方案1】:很遗憾,iOS 版 Google Play 游戏服务已被弃用,因此我不建议您花太多时间在它上面。更多信息:https://android-developers.googleblog.com/2017/04/focusing-our-google-play-games-services.html
【讨论】:
实际上我在声明弃用之前已经集成了 Google Play 游戏服务。以上是关于ios 中的 google Play 游戏排行榜的主要内容,如果未能解决你的问题,请参考以下文章