Measuring execution speed using CFAbsoluteTimeGetCurrent()

Measuring execution speed using CFAbsoluteTimeGetCurrent()

It’s often important to know at runtime how long it took for some code to run. For example, you might want to make sure your game’s AI takes at least two seconds to think before making its move, so that players don’t get confused when there’s no thinking time.

iOS comes with a built-in function called CFAbsoluteTimeGetCurrent(), which reads the current system time measured as seconds since January 1st 2001. It’s sent back as a Double, so you get sub-second accuracy as best as the system stores it.

To use the function, call it once before your work, then again after, and subtract the after from the before to get the difference, like this:

1
2
3
4
let start = CFAbsoluteTimeGetCurrent()
// run your work
let diff = CFAbsoluteTimeGetCurrent() - start
print("Took \(diff) seconds")

Refrences

comments powered by Disqus
Built with Hugo
Theme Stack designed by Jimmy