gpt4 book ai didi

iphone - 在 iPhone 中将 NSTimeInterval 转换为 NSString?

转载 作者:行者123 更新时间:2023-12-03 18:15:39 24 4
gpt4 key购买 nike

如何将 NSTimeInterval 转换为 NSString?我有

NSTimeInterval  today = [[NSDate date] timeIntervalSince1970];

我必须将“今天”作为 NSString 输入。

最佳答案

NSTimeInterval 只是一个 double 类型,因此您可以使用 +stringWithFormat: 方法将其转换为字符串

NSTimeInterval  today = [[NSDate date] timeIntervalSince1970];
NSString *intervalString = [NSString stringWithFormat:@"%f", today];

关于iphone - 在 iPhone 中将 NSTimeInterval 转换为 NSString?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4278129/

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