Skip to content

Instantly share code, notes, and snippets.

@Appletone
Created July 30, 2015 01:21
Show Gist options
  • Save Appletone/0092db3e18d3f264ed79 to your computer and use it in GitHub Desktop.
Save Appletone/0092db3e18d3f264ed79 to your computer and use it in GitHub Desktop.
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
//Add some method process in global queue - normal for data processing
dispatch_async(dispatch_get_main_queue(), ^(){
//Add method, task you want perform on mainQueue
//Control UIView, IBOutlet all here
});
//Add some method process in global queue - normal for data processing
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment