Created
April 7, 2016 16:55
-
-
Save s1u/43cbdef7b3d1012f07022300fad6d762 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
// http://stackoverflow.com/questions/24755558/measure-elapsed-time-in-swift | |
let begin = NSDate() | |
print(begin) | |
let elapsedTime = timeIntervalSinceDate(begin) | |
let elapsedTime2 = begin.timeIntervalSinceNow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment