What is the best way to get the current system time milliseconds?
|
It returns the number of seconds since epoch as a double. I'm almost sure you can access the milliseconds from the fractional part. |
|||
|
|
|
If you're looking at using this for relative timing (for example for games or animation) I'd rather use
Which is the recommended way; NSDate draws from the networked synch-clock and will occasionally hiccup when re-synching it against the network. Allan |
|||||||||||||||||||||
|
|
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...) :
|
|||||||
|
|
I benchmarked all the other answers on an iPhone 4S and iPad 3 (release builds). I'd recommend iPhone 4S
iPad 3
|
||||
|
|
|
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/ |
|||
|
I needed a So to get the format that the original function was giving me, try this:
Which should give you the exact same result as |
|||
|
|
|
|
||||
|
|