IOS개발하면서, 동시성을 제공해 주기위해 사용할 수 있는 API에 GCD가 있습니다. API란? Application Programming Interface의 약자로 언어로 응용프로그램을 만들 때, 1000여개 이상의 함수로 구성된 운영체제와 응용프로그램의 통신에 사용되는 인터페이스입니다. GCD란? Grand Central Patch의 약자로 애플은 GCD provides and manages FIFO queues to which your application can submit tasks in the form of block objects. Work submitted to dispatch queues are executed on a pool of threads fully managed by the ..