GCD Sync Vs Async

Without wasting any time let me tell you the difference between sending executing block synchronously vs asynchronously in GCD Sending a block synchronously from a queue to another queue, blocks the sending queue until the block that is sent for synchronous execution gets completed. Sending a block asynchronously does not block the sending queue. In… Continue reading GCD Sync Vs Async