Answers:
[[NSDate date] timeIntervalSince1970];
它返回自纪元以来的秒数(双精度)。我几乎确定您可以从小数部分访问毫秒。
[NSDate timeIntervalSinceReferenceDate]
比较便宜 (尽管它引用了一个不同的“时期”-如果您想在1970年添加常量NSTimeIntervalSince1970
。)
如果您打算将其用于相对时间(例如游戏或动画),则宁愿使用CACurrentMediaTime()
double CurrentTime = CACurrentMediaTime();
推荐的方法; NSDate
从联网的同步时钟中提取数据,并在与网络重新同步时偶尔会打h。
它以秒为单位返回当前的绝对时间。
如果您只需要小数部分(通常在同步动画时使用),
let ct = CACurrentMediaTime().truncatingRemainder(dividingBy: 1)
我在iPhone 4S和iPad 3(发布版本)上对所有其他答案进行了基准测试。CACurrentMediaTime
开销最小,利润也很少。虽然实例化开销可能并不重要,但它timeIntervalSince1970
却比其他NSDate
实例慢得多。
我建议CACurrentMediaTime
您是否需要最少的开销,并且不介意添加Quartz Framework依赖项。或者,gettimeofday
如果便携性是您的首要任务。
iPhone 4S
CACurrentMediaTime: 1.33 µs/call
gettimeofday: 1.38 µs/call
[NSDate timeIntervalSinceReferenceDate]: 1.45 µs/call
CFAbsoluteTimeGetCurrent: 1.48 µs/call
[[NSDate date] timeIntervalSince1970]: 4.93 µs/call
iPad 3
CACurrentMediaTime: 1.25 µs/call
gettimeofday: 1.33 µs/call
CFAbsoluteTimeGetCurrent: 1.34 µs/call
[NSDate timeIntervalSinceReferenceDate]: 1.37 µs/call
[[NSDate date] timeIntervalSince1970]: 3.47 µs/call
NSTimeIntervalSince1970
最快的宏。
NSTimeIntervalSince1970
是一个常量,描述了1970-01-01和“参考日期”之间的秒数(即2001-01-01),因此它始终等于978307200
在Swift中,我们可以创建一个函数并执行以下操作
func getCurrentMillis()->Int64{
return Int64(NSDate().timeIntervalSince1970 * 1000)
}
var currentTime = getCurrentMillis()
尽管它在Swift 3.0中可以正常工作,但是我们可以修改和使用Date
该类,而不是NSDate
在3.0中
斯威夫特3.0
func getCurrentMillis()->Int64 {
return Int64(Date().timeIntervalSince1970 * 1000)
}
var currentTime = getCurrentMillis()
到目前为止gettimeofday
,当您要执行一些间隔评估(例如,帧速率,渲染帧的时间...)时,我在iOS(iPad)上找到了一个不错的解决方案:
#include <sys/time.h>
struct timeval time;
gettimeofday(&time, NULL);
long millis = (time.tv_sec * 1000) + (time.tv_usec / 1000);
获取当前日期的毫秒数。
迅捷4+:
func currentTimeInMilliSeconds()-> Int
{
let currentDate = Date()
let since1970 = currentDate.timeIntervalSince1970
return Int(since1970 * 1000)
}
了解CodeTimestamps可能很有用,它为基于mach的计时功能提供了包装。这为您提供了纳秒级精度的计时数据-比毫秒精度高1000000x。是的,精确度提高了一百万倍。(前缀为milli,micro,nano,每个精度都比最后一个精度高1000倍。)即使您不需要CodeTimestamps,也请查看代码(它是开放源代码),以查看它们如何使用mach来获取计时数据。当您需要更高的精度并且想要比NSDate方法更快的方法调用时,这将很有用。
http://eng.pulse.me/line-by-line-speed-analysis-for-ios-apps/
-fno-objc-arc
如果您使用的是ARC,则可能需要一个:)
// Timestamp after converting to milliseconds.
NSString * timeInMS = [NSString stringWithFormat:@"%lld", [@(floor([date timeIntervalSince1970] * 1000)) longLongValue]];
我需要一个NSNumber
包含确切结果的对象[[NSDate date] timeIntervalSince1970]
。由于此函数已被调用过多次,因此我并不需要创建一个NSDate
对象,因此性能并不理想。
因此,要获取原始功能给我的格式,请尝试以下操作:
#include <sys/time.h>
struct timeval tv;
gettimeofday(&tv,NULL);
double perciseTimeStamp = tv.tv_sec + tv.tv_usec * 0.000001;
哪个应该给您与完全相同的结果 [[NSDate date] timeIntervalSince1970]
绝对时间以秒为单位,相对于格林尼治标准时间2001年1月1日00:00:00的绝对参考日期。正值表示参考日期之后的日期,负值表示参考日期之前的日期。例如,绝对时间-32940326等于1999年12月16日17:54:34。重复调用此函数不能保证单调递增的结果。系统时间可能由于与外部时间参考同步或由于用户明确更改时钟而减少。
试试这个 :
NSDate * timestamp = [NSDate dateWithTimeIntervalSince1970:[[NSDate date] timeIntervalSince1970]];
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateFormat:@"YYYY-MM-dd HH:mm:ss.SSS"];
NSString *newDateString = [dateFormatter stringFromDate:timestamp];
timestamp = (NSDate*)newDateString;
在此示例中,dateWithTimeIntervalSince1970与格式化程序@“ YYYY-MM-dd HH:mm:ss.SSS”结合使用,该格式化程序将以年,月,日为单位返回日期,并以小时,分钟,秒和毫秒为单位返回时间。参见示例:“ 2015-12-02 04:43:15.008”。我使用NSString来确保该格式已被写入。
这基本上与@TristanLorach发布的答案相同,只是为Swift 3重新编码了:
/// Method to get Unix-style time (Java variant), i.e., time since 1970 in milliseconds. This
/// copied from here: http://stackoverflow.com/a/24655601/253938 and here:
/// http://stackoverflow.com/a/7885923/253938
/// (This should give good performance according to this:
/// http://stackoverflow.com/a/12020300/253938 )
///
/// Note that it is possible that multiple calls to this method and computing the difference may
/// occasionally give problematic results, like an apparently negative interval or a major jump
/// forward in time. This is because system time occasionally gets updated due to synchronization
/// with a time source on the network (maybe "leap second"), or user setting the clock.
public static func currentTimeMillis() -> Int64 {
var darwinTime : timeval = timeval(tv_sec: 0, tv_usec: 0)
gettimeofday(&darwinTime, nil)
return (Int64(darwinTime.tv_sec) * 1000) + Int64(darwinTime.tv_usec / 1000)
}
这就是我用过的Swift
var date = NSDate()
let currentTime = Int64(date.timeIntervalSince1970 * 1000)
print("Time in milliseconds is \(currentTime)")
使用此网站来验证准确性http://currentmillis.com/
let timeInMiliSecDate = Date()
let timeInMiliSec = Int (timeInMiliSecDate.timeIntervalSince1970 * 1000)
print(timeInMiliSec)
NSTimeInterval time = ([[NSDate date] timeIntervalSince1970]); //double
long digits = (long)time; //first 10 digits
int decimalDigits = (int)(fmod(time, 1) * 1000); //3 missing digits
/*** long ***/
long timestamp = (digits * 1000) + decimalDigits;
/*** string ***/
NSString *timestampString = [NSString stringWithFormat:@"%ld%03d",digits ,decimalDigits];