我在将日期打印为 NSString 时遇到问题。我以这种方式在我的应用程序生命周期的某些点存储了当前日期和时间:
NSDate *current = [NSDate date];
long currentTime = [current timeIntervalSince1970];
现在,我需要在 UILabels 中显示这些日期。我试过这样:
NSDate *date = [NSDate dateWithTimeIntervalSince1970:currentTime];
NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"dd/MM/yyyy - HH:mm:ss"];
NSString *stringFromDate = [formatter stringFromDate:date];
但我没有得到正确的日期和时间。我会错过什么?
谢谢!