Last active
July 27, 2018 08:15
-
-
Save Dywane/a6e9b311745c1240f4221ba4e198fe11 to your computer and use it in GitHub Desktop.
Configure RunLoop
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
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