Skip to content

Instantly share code, notes, and snippets.

@Appletone
Created July 18, 2014 01:08
Show Gist options
  • Save Appletone/67826ecbf85197e4537f to your computer and use it in GitHub Desktop.
Save Appletone/67826ecbf85197e4537f to your computer and use it in GitHub Desktop.
3.days.ago
import Foundation
extension Int {
var days:Int {
return 60*60*24*self
}
var ago:NSDate {
return NSDate().dateByAddingTimeInterval(-Double(self))
}
}
var d = 3.days.ago
println(d) // => 2014-07-21 01:06:03 +0000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment