Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best way to get the current system time milliseconds?

share|improve this question

7 Answers

up vote 88 down vote accepted

[[NSDate date] timeIntervalSince1970];

It returns the number of seconds since epoch as a double. I'm almost sure you can access the milliseconds from the fractional part.

share|improve this answer

If you're looking at using this for relative timing (for example for games or animation) I'd rather use

    double CurrentTime = CACurrentMediaTime(); 

Which is the recommended way; NSDate draws from the networked synch-clock and will occasionally hiccup when re-synching it against the network.

Allan

share|improve this answer
8  
Good tip. -[NSDate timeIntervalSince1970] can return a value that is actually less than a value that it returned in the past, because it's based on the system clock. This clock is synchronized with the current time over the network (e.g. cell network or Internet). The Core Animation function CACurrentMediaTime "apparently takes care of the tricky bits in converting mach_absolute_time() into seconds." (alexcurylo.com/blog/2009/09/05/tip-cacurrentmediatime) – Elliot Jul 17 '10 at 23:30
4  
But it seems to take double the time needed for [[NSDate date] timeIntervalSince1970]. I measured 0.065ms vs. 0.033ms on 15000 calls. – Kay Jun 29 '11 at 21:43
1  
Note, you'll need to include the Quartz Framework and #import <Quartz/CABase.h> to make this call. – BadPirate Feb 21 '12 at 21:08
7  
Whoops - thats import #import <QuartzCore/CAAnimation.h> – BadPirate Feb 21 '12 at 22:41
1  
For those new to Xcode (like me) "include Quartz Framework" means adding it to the set of libraries in "Link Binary With Libraries". – Gabe Johnson Sep 18 '12 at 17:01

so far I found gettimeofday a good solution on iOS (iPad), when you want to perform some interval evaluation (say, framerate, timing of a rendering frame...) :

#include <sys/time.h>
struct timeval time;
gettimeofday(&time, NULL);
long millis = (time.tv_sec * 1000) + (time.tv_usec / 1000);
share|improve this answer
2  
I like this too since it's very portable. Note that depending on the OS you might need to use 'long long' instead of a 'long' and likewise cast time.tv_sec to 'long long' before doing the rest of the calculation. – AbePralle Dec 1 '11 at 23:20
static unsigned long getMStime(void) { struct timeval time; gettimeofday(&time, NULL); return (time.tv_sec * 1000) + (time.tv_usec / 1000); } – David H Apr 26 '12 at 13:54

I benchmarked all the other answers on an iPhone 4S and iPad 3 (release builds). CACurrentMediaTime has the least overhead by a small margin. timeIntervalSince1970 is far slower than the others, probably due to NSDate instantiation overhead, though it may not matter for many use cases.

I'd recommend CACurrentMediaTime if you want the least overhead and don't mind adding the Quartz Framework dependency. Or gettimeofday if portability is a priority for you.

iPhone 4S

CACurrentMediaTime: 1.33 us/call
gettimeofday: 1.38 us/call
[NSDate timeIntervalSinceReferenceDate]: 1.45 us/call
CFAbsoluteTimeGetCurrent: 1.48 us/call
[[NSDate date] timeIntervalSince1970]: 4.93 us/call

iPad 3

CACurrentMediaTime: 1.25 us/call
gettimeofday: 1.33 us/call
CFAbsoluteTimeGetCurrent: 1.34 us/call
[NSDate timeIntervalSinceReferenceDate]: 1.37 us/call
[[NSDate date] timeIntervalSince1970]: 3.47 us/call
share|improve this answer

It may be useful to know about CodeTimestamps, which provide a wrapper around mach-based timing functions. This gives you nanosecond-resolution timing data - 1000000x more precise than milliseconds. Yes, a million times more precise. (The prefixes are milli, micro, nano, each 1000x more precise than the last.) Even if you don't need CodeTimestamps, check out the code (it's open source) to see how they use mach to get the timing data. This would be useful when you need more precision and want a faster method call than the NSDate approach.

http://eng.pulse.me/line-by-line-speed-analysis-for-ios-apps/

share|improve this answer
1  
+1 nice one, I just bookmarked it. – Kay Jun 29 '11 at 18:35
And you'll probably need a -fno-objc-arc if you're using ARC :) – Yar Oct 6 '11 at 20:55

I needed a NSNumber object containing the exact result of [[NSDate date] timeIntervalSince1970]. Since this function was called many times and I didn't really need to create an NSDate object, performance was not great.

So to get the format that the original function was giving me, try this:

#include <sys/time.h>
struct timeval tv;
gettimeofday(&tv,NULL);
double perciseTimeStamp = tv.tv_sec + tv.tv_usec * 0.000001;

Which should give you the exact same result as [[NSDate date] timeIntervalSince1970]

share|improve this answer

[NSDate timeIntervalSinceReferenceDate] is another option, if you don't want to include the Quartz framework. It returns a double, representing seconds.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.