Skip to content

Instantly share code, notes, and snippets.

@FradSer
Last active August 6, 2019 19:57
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 FradSer/bc9d027bb9658de0975a01e76886c179 to your computer and use it in GitHub Desktop.
Save FradSer/bc9d027bb9658de0975a01e76886c179 to your computer and use it in GitHub Desktop.
@State var timeCount: Double = 0.0
var timer: Timer {
Timer.scheduledTimer(withTimeInterval: 0.1, repeats: true) {timer in
self.timeCount += 0.1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment