NSDate 、CFAbsoluteTimeGetCurrent、CACurrentMediaTime 的区别
框架层:
- NSDate 属于Foundation
- CFAbsoluteTimeGetCurrent() 属于 CoreFoundatio
- CACurrentMediaTime() 属于 QuartzCore
本质区别:
NSDate
或 CFAbsoluteTimeGetCurrent()
返回的时钟时间将会会网络时间同步,从时钟偏移量的角度。
mach_absolute_time()
和 CACurrentMediaTime()
是基于内建时钟的,能够更精确更原子化地测量,并且不会因为外部时间变化而变化(例如时区变化、夏时制、秒突变等),但它和系统的 uptime 有关,系统重启后其值会被重置。CACurrentMediaTime 方法获取到的时间,是手机从开机一直到当前所经过的秒数。类似的,CADisplayLink 的时间戳也是使用该概念的时间(HostTime)。
常见用法:
NSDate、CFAbsoluteTimeGetCurrent()常用于日常时间、时间戳的表示,与服务器之间的数据交互 其中 CFAbsoluteTimeGetCurrent() 相当于 [[NSDate data] timeIntervalSinceReferenceDate];
CFAbsoluteTimeGetCurrent() 常用于测试代码的效率。