gpt4 book ai didi

ios - 精确到百分之一秒的时间 float - Objective C

转载 作者:行者123 更新时间:2023-11-29 04:00:14 25 4
gpt4 key购买 nike

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

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

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

最佳答案

您可以通过以下方式将 NSDatefloatdouble 转换为:

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

然后你可以使用:

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

关于ios - 精确到百分之一秒的时间 float - Objective C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15953616/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com