2
在swift3應用連續做我需要的代碼塊,以便運行:如何保證呼叫使用GCD
UIApplication.shared.beginIgnoringInteractionEvents()
loadDataTask.resume()
UIApplication.shared.endIgnoringInteractionEvents()
它正在的DispatchQueue.main.async()
內運行(每一個網絡通話,這就是爲什麼我想暫時阻止用戶輸入)。我仍然在快速學習,並且在GCD概念上掙扎一點。任何建議將非常感激。
試過[OperationQueue](https://developer.apple.com/reference/foundation/operationqueue)? – antonio081014