以百分之一秒的速度浮动 - 目标C

时间:2013-04-11 16:04:19

标签: ios objective-c xcode time

我想把时间花在我的应用程序的Apple排行榜上。时间采用浮点格式,如9.23(9秒,23个百分点)

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

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

1 个答案:

答案 0 :(得分:1)

您可以将NSDatefloatdouble转换为:

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

然后你可以使用:

[self.gameCenterManager reportScore:date forCategory: self.currentLeaderBoard];