6

您将 scoreReporter 设置为什么值以在游戏中心排行榜中显示为正确时间。您需要什么来隐藏秒数才能正确显示在排行榜中。任何帮助将不胜感激。

这是我的代码:

GKScore *scoreReporter = [[[GKScore alloc] initWithCategory:@"BestTime"] autorelease];
scoreReporter.value = TotalSeconds * 10;
4

1 回答 1

6

如果您已将排行榜分数格式类型定义为“经过时间 - 到秒”,秒数就可以了。您只需要

scoreReporter.value = TotalSeconds
于 2011-07-28T16:38:57.463 回答