Category: study Material
Feb 26, 2025 study Material
GCD for main and Global Thread
GCD (Grand Central Dispatch) GCD (Grand Central Dispatch) is a Low level API basically used to manage the concurrency of the application. It manages the heavy task at the background. We use DispatchQueue for the operation for the GCD .…
Jul 23, 2022 iOS
Concurrency in iOS swift
Concurrency in iOS swift is the method of running the different task at the same time or in random order. Basically its a multiple task running at same time. Most of the task are run in the different threads. Each…