What is the difference between synchronous and asynchronous dispatch in GCD?

Updated May 17, 2026

Short answer

Sync blocks wait for completion; async returns immediately.

Deep explanation

Synchronous dispatch blocks current thread until task completes. Asynchronous dispatch schedules task on queue and returns immediately, allowing concurrency.

Unlock with a Pro subscription to view this section.

View pricing

Real-world example

No real-world example available yet.

Unlock with a Pro subscription to view this section.

Upgrade to Pro

Common mistakes

No common mistakes listed yet.

Unlock with a Pro subscription to view this section.

Upgrade to Pro

Follow-up questions

No follow-up questions available yet.

Unlock with a Pro subscription to view this section.

Upgrade to Pro

More Objective-C interview questions

View all →