Created
October 4, 2019 16:46
-
-
Save nspeet/23f6bd8d1042f7c7fe58e496d2ee1beb to your computer and use it in GitHub Desktop.
This file contains hidden or 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 timer = Timer.scheduledTimer(timeInterval: 5.0, target: self, selector: #selector(updateData), userInfo: nil, repeats: true) | |
@objc func updateData() { | |
print("update data here and then display!") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment