Last active
September 16, 2016 23:17
-
-
Save toddhopkinson/9219f1abc7da48eb9d28bafe2c9eb767 to your computer and use it in GitHub Desktop.
Days past since date
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 birthday = Todd.birthday // gets my birthday | |
let now = NSDate() | |
let secondsDifference = now.timeIntervalSinceDate(birthday) | |
let secondsPerDay = 60*60*24 // 60 seconds * 60 minutes * 24 hours | |
let daysSinceBirthday = secondsDifference / secondsPerDay |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment