Swift3.0-DisPatch
Posted 三更小新
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swift3.0-DisPatch相关的知识,希望对你有一定的参考价值。
class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() clorse { (json) in print(json) } } func clorse(completion:@escaping (_ json: [String])->()) { let workingQueue = DispatchQueue(label: "workingQueue") workingQueue.async { // 延迟操作 print("努力工作") Thread.sleep(forTimeInterval: 2.0) let json = ["ac","mym"] DispatchQueue.main.async { print("结束工作") // 主线程更新 回调 completion(json) } } } }
以上是关于Swift3.0-DisPatch的主要内容,如果未能解决你的问题,请参考以下文章