您好我正在阅读swift中的调度队列和GDC,这里是文章:
https://swiftable.io/2016/06/dispatch-queues-swift-3/
在示例中调用异步方法时,我对语法有疑问。
DispatchQueue.main.async {
print("main thread dispatch")
}
根据苹果文档https://developer.apple.com/documentation/dispatch/dispatchqueue
async是一个DispatchQueue实例方法。在上面的语法中是否异步传递闭包函数?我不熟悉用于异步的特定块{}语法。