Last active
May 7, 2018 00:08
-
-
Save llinardos/ca88472c57cccc0d6d5e7028a0cac477 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 syncService = SyncronicThingsService() | |
activityIndicator.startAnimating() | |
DispatchQueue.global(qos: .background).async { | |
let getThingsResult = syncService.getThings() | |
DispatchQueue.main.async { | |
activityIndicator.stopAnimating() | |
updateUI(with: getThingsResult) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment