How To submit my time of win game in game center in ios

倾然丶 夕夏残阳落幕 提交于 2019-12-22 11:38:25

问题


how to post/Submit my time in game center in iOS acutely i am complete my game with in 2 mint and Submit my time game center

02.00 and acutely leaderboard save time like this 0.00.02 i want submit my time look like in leaderboard 0.02.00

currentScore=02.22;

[[GameCenterManager sharedManager] saveAndReportScore:currentScore leaderboard:leaderboardNameID
                                                    sortOrder:GameCenterSortOrderLowToHigh];

回答1:


The score parameter is an integer, so you should be tracking the number of seconds as the score, not the number of minutes:

int score = 2 * 60 + 22;   // 142 seconds = 2m22s

Reference



来源:https://stackoverflow.com/questions/30124240/how-to-submit-my-time-of-win-game-in-game-center-in-ios

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!