Created
November 20, 2017 09:25
-
-
Save eastari/3c20687a3b6e6578a7597da9284a3f7b to your computer and use it in GitHub Desktop.
It_took_ms
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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