GCD (Grand Central Dispatch)

DispatchQueue

1) Serial Disptach Queue

DispatchQueue.main.async {
//    UI Update
    let view = UIView()
    view.backgroundColor = #colorLiteral(red: 1.0, green: 1.0, blue: 1.0, alpha: 1.0)
}

2) Concurrent Dispatch Queue