问题
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