Created
September 7, 2016 10:06
-
-
Save MaximAlien/b0a671d2f1e994edeb30f2f31d813e55 to your computer and use it in GitHub Desktop.
[iOS] GCD method to update UI from background thread
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
dispatch_async(dispatch_get_main_queue(), ^{ | |
// update UI here | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment