ios 获取时间戳的几种方式

NSDate

属于Foundation (单位秒,保留到微秒)

CFAbsoluteTimeGetCurrent()

属于 CoreFoundatio(单位秒,保留到微秒,默认为the reference date (epoch) is 00:00:00 1 January 2001)
相当于[[NSDate data] timeIntervalSinceReferenceDate]

kCFAbsoluteTimeIntervalSince1970;(1970到现在的时间2000的时间差,单位秒)

与NSTimeIntervalSince1970 等同于 978307200.0
1970到当前时间戳为(CFAbsoluteTimeGetCurrent() + kCFAbsoluteTimeIntervalSince1970)

CACurrentMediaTime()

属于 QuartzCore(单位秒,保留到纳秒)

偏移量的角度,

mach_absolute_time()(单位是纳秒)

mach_absolute_time()转化为CACurrentMediaTime()

CGFloat ComputeTimeBlock (void (^block)(void)) {
    mach_timebase_info_data_t info;
    if (mach_timebase_info(&info) != KERN_SUCCESS) return -1.0;
    
    uint64_t start = mach_absolute_time ();
    
    uint64_t nanos = start * info.numer / info.denom;
    CGFloat test =  (CGFloat)nanos / NSEC_PER_SEC;
    return test;
}

本质区别:

NSDate
或 CFAbsoluteTimeGetCurrent() 返回的时钟时间将会会网络时间同步,从时钟
偏移量的角度,mach_absolute_time()(单位是纳秒)
和 CACurrentMediaTime()
是基于内建时钟的,能够更精确更原子化地测量,并且不会因为外部时间变化而变化(例如时区变化、夏时制、秒突变等),但它和系统的uptime有关,系统重启后CACurrentMediaTime()会被重置。

常见用法:

NSDate、CFAbsoluteTimeGetCurrent
()常用于日常时间、时间戳的表示,与服务器之间的数据交互

CACurrentMediaTime() 常用于测试代码的效率

你可能感兴趣的:(ios 获取时间戳的几种方式)