iPhone开发--获取当前时间与2001年1月1日的时间差以毫秒为单位

来源:网络 责任编辑:栏目编辑 发表时间:2013-07-02 05:59 点击:

因为程序的需要,要计算两个时间的时间间隔,既时间差,如果用NSDate等方法拿到的时间格式很难进行差值运算(个人觉得),于是想有没有一个方法象java中的那样获取1970年以后的时间,上伟大的stackOverFlow上查找答案 终于找到了,
 
原文翻译如下:
 
看CFAbsoluteTimeGetCurrent :http://developer.apple.com/documentation/CoreFoundation/Reference/CFTimeUtils/index.html
 
 
[cpp] CFAbsoluteTime start = CFAbsoluteTimeGetCurrent();
 // do something you want to measure 
 CFAbsoluteTime end = CFAbsoluteTimeGetCurrent();
 NSLog(@"operation took %2.5f seconds", end-start);
 CFAbsoluteTime start = CFAbsoluteTimeGetCurrent();
 // do something you want to measure
 CFAbsoluteTime end = CFAbsoluteTimeGetCurrent();
 NSLog(@"operation took %2.5f seconds", end-start);
 如果你觉得CFAbsouteTime 是冗长的,你可以用简单的double方法替代它。
 
因为在CFDate.h中是如此定义的。 www.2cto.com
 
 
[cpp] <span style="font-family:'Times New Roman';">typedef double CFTimeInterval;
 typedef CFTimeInterval CFAbsoluteTime;</span>
 <span style="font-family:'Times New Roman';">typedef double CFTimeInterval;
 typedef CFTimeInterval CFAbsoluteTime;</span>
 
追加:
 
实际上NSDate自带了获取自1970年到now的毫秒数,只是自己浅薄,没找到而已,呵呵:
 
[cpp] [NSString stringWithFormat:@"%d", (int)[[NSDate date] timeIntervalSince1970]]
 [NSString stringWithFormat:@"%d", (int)[[NSDate date] timeIntervalSince1970]]曾经自己还傻傻的用java算1970年到2001年的毫秒数,再加上now到2001年的毫秒数。呵呵。
 
 摘自zcl369369的专栏

    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • Lexical or Preprocessor Issue 'xxx.h
    • ios学习笔记(二)xcode 4.3.2下实现基本交互
    • ios版本的helloworld
    • iphone(object-c) 内存管理(3) 有效的内存管理 前半部分
    • ios学习笔记(一)xcode 4.3.2下创建第一个ios项目
    • IOS类似iphone通讯录TableView的完整demo【附源码】
    • UITableView一些方法
    • [iPhone中级]iPhone团购信息客户端的开发 (二)
    • iphone(object-c)内存管理(1)
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1