gpt4 book ai didi

iphone - 我如何将充满 UNIX 日期的 NSMutableArray 转换为标准日期?

转载 作者:行者123 更新时间:2023-11-28 20:46:22 25 4
gpt4 key购买 nike

我有一个 NSMutableArray 填充了 UNIX 日期 (1305410327),我想将它们全部转换为可读日期,例如 Fri, 06 Feb 2009 07:28:06 +0000。我迷路了,这是我的代码:

NSDate *fulltime = [NSDate dateWithTimeIntervalSince1970:[time objectAtIndex:indexPath.row]];

但是在编译时给我下一个错误:

error: incompatible type for argument 1 of 'dateWithTimeIntervalSince1970:'

所以我不知道如何让它工作。提前谢谢大家! :)

最佳答案

zad0xsis,

您需要将 NSNumber 转换为 NSTimeInterval。这是对您的代码的修复:

NSDate *fulltime = [NSDate dateWithTimeIntervalSince1970: 
[[time objectAtIndex:indexPath.row] doubleValue]];

安德鲁

关于iphone - 我如何将充满 UNIX 日期的 NSMutableArray 转换为标准日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6009534/

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