Skip to content

Instantly share code, notes, and snippets.

@S1U
Created April 7, 2016 16:55
Show Gist options
  • Save S1U/43cbdef7b3d1012f07022300fad6d762 to your computer and use it in GitHub Desktop.
Save S1U/43cbdef7b3d1012f07022300fad6d762 to your computer and use it in GitHub Desktop.
// 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