gpt4 book ai didi

iphone - 将时间戳转换为日期格式

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:50:01 26 4
gpt4 key购买 nike

我正在尝试将时间戳 (NSTimeInterval) 转换为日期格式。我得到正确的当前日期(日月年),但时间不正确。这是我的代码。如何修复它以正确获取当前时间?提前致谢。

- (NSString*)formatTimestamp:(NSTimeInterval)timeStamp
{
NSDate *date = [NSDate dateWithTimeIntervalSinceNow:timeStamp];
NSDateFormatter *formatter=[[NSDateFormatter alloc]init];
[formatter setDateFormat:@"dd-MM-yyyy HH:mm:ss:SSS zzz"];
NSString *dateString=[formatter stringFromDate:date];
[formatter release];
return dateString;
}

最佳答案

也许我误解了什么,但我认为你的比较不正确......

NSLog 的时间是当前时间UIEventtimestamp自系统启动以来的秒数(并且您使用 [NSDate dateWithTimeIntervalSinceNow:] 将其添加到当前时间)...

如果你想要 UIEvent 的绝对日期时间,你需要先获取系统启动日期,这不是那么容易......然后添加 UIEvent时间戳

你可以使用

lastRebootTime = [[NSDate date] addTimeInterval:-[self secondsSinceLastReboot]];

- (NSTimeInterval)secondsSinceLastReboot
{
// get the timebase info -- different on phone and OSX
mach_timebase_info_data_t info;
mach_timebase_info(&info);

// get the time
uint64_t absTime = mach_absolute_time();

// apply the timebase info
absTime *= info.numer;
absTime /= info.denom;

// convert nanoseconds into seconds
return (NSTimeInterval) ((double)absTime / 1000000000.0);
}

比照。 Generating iPhone UIEvent Timestamps

关于iphone - 将时间戳转换为日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10609474/

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