Skip to content

Instantly share code, notes, and snippets.

@Dywane
Last active July 27, 2018 08:15
Show Gist options
  • Save Dywane/a6e9b311745c1240f4221ba4e198fe11 to your computer and use it in GitHub Desktop.
Save Dywane/a6e9b311745c1240f4221ba4e198fe11 to your computer and use it in GitHub Desktop.
Configure RunLoop
private func setup() {
_displayLink = CADisplayLink(target: self, selector: #selector(update))
_displayLink?.isPaused = true
_displayLink?.add(to: RunLoop.main, forMode: .commonModes)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment