关于iOS中的时间_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 关于iOS中的时间

关于iOS中的时间

 2016/9/28 5:32:24  huahuahu  程序员俱乐部  我要评论(0)
  • 摘要:两类绝对时间[NSDatedate]、CFAbsoluteTimeGetCurrent(),或者gettimeofday()。返回的是从某一个时刻开始,度过的秒数。会随着用户设置的系统时间更改。相对时间CACurrentMediaTime或者-[NSProcessInfosystemUptime],相对时间。重启之后,会重新计数。参考资料KeepingTrackofTimePassedoniOSNSDate、CFAbsoluteTimeGetCurrent
  • 标签:iOS

两类

  1. 绝对时间
    [NSDate date]CFAbsoluteTimeGetCurrent(),或者gettimeofday()。 返回的是从某一个时刻开始,度过的秒数。会随着用户设置的系统时间更改。
  2. 相对时间
    CACurrentMediaTime 或者-[NSProcessInfo systemUptime],相对时间。重启之后,会重新计数。

参考资料

  1. Keeping Track of Time Passed on iOS
  2. NSDate 、CFAbsoluteTimeGetCurrent、CACurrentMediaTime 的区别
  3. Benchmarking
发表评论
用户名: 匿名