Skip to content

Instantly share code, notes, and snippets.

@eastari
Created November 20, 2017 09:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eastari/3c20687a3b6e6578a7597da9284a3f7b to your computer and use it in GitHub Desktop.
Save eastari/3c20687a3b6e6578a7597da9284a3f7b to your computer and use it in GitHub Desktop.
It_took_ms
let startTime = CFAbsoluteTimeGetCurrent()
// to do smth
let endTime = CFAbsoluteTimeGetCurrent()
let elapsedTime = (endTime - startTime) * 1000
print("It took \(elapsedTime) ms")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment