swift 等待异步任务

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 等待异步任务相关的知识,希望对你有一定的参考价值。

1. Use dispatch_group_create() to create a group.
2. Call dispatch_group_enter(group) before starting each download task.
3. Call dispatch_group_leave(group) inside the task's completion handler.
4. Then call dispatch_group_notify(group, queue, ^{ ... }) to enqueue a block that will be executed when all the tasks are completed.
let dispatchGroup = DispatchGroup()

dispatchGroup.enter()
// do something, including background threads

dispatchGroup.leave()

dispatchGroup.notify(queue: DispatchQueue.main) {
    // completion code
}

以上是关于swift 等待异步任务的主要内容,如果未能解决你的问题,请参考以下文章

Swift 中的 C# 异步等待

如何等待异步函数 Swift

执行网络调用并继续 - 异步任务

异步等待失败 swift API 请求

Swift 5.5 async let - 错误:表达式为“异步”但未标记为“等待”

Swift 4:创建一个异步串行队列,每个作业后等待2秒钟