Skip to content

Instantly share code, notes, and snippets.

@rkrishnasanka
Forked from AhmedKammorah/new_gist_file
Last active December 21, 2015 22:39
Async operations iOS
dispatch_queue_t queue = dispatch_get_global_queue(
DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_async(queue, ^{
//any thing
});
//ref
//http://jeffreysambells.com/2013/03/01/asynchronous-operations-in-ios-with-grand-central-dispatch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment