0

我想为我的应用程序在 Apple 的排行榜上打发时间。时间采用浮点格式,例如 9.23(9 秒,百分之二十三)

如何将此浮点数转换为 NSDate 并使用以下代码传入:

[self.gameCenterManager reportScore: self.currentScore forCategory: self.currentLeaderBoard];
4

1 回答 1

1

您可以NSDate通过float以下方式转换double

double score=9.23;//or anythign in float or double
NSDate *date=[NSDate dateWithTimeIntervalSince1970:score]; 

那么你可以使用:

[self.gameCenterManager reportScore:date forCategory: self.currentLeaderBoard];
于 2013-04-11T16:14:02.963 回答