Skip to content

Instantly share code, notes, and snippets.

@nanotroy
Created June 5, 2019 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nanotroy/49a5209d17db472a5d5a744d177fe479 to your computer and use it in GitHub Desktop.
Save nanotroy/49a5209d17db472a5d5a744d177fe479 to your computer and use it in GitHub Desktop.
@State var nowDate: Date = Date()
let referenceDate: Date
var timer: Timer {
Timer.scheduledTimer(withTimeInterval: 1, repeats: true) {_ in
self.nowDate = Date()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment