【发布时间】:2017-08-17 12:54:47
【问题描述】:
我有一个使用旧的 swift 代码开发的应用程序。现在我将它更新为最新的 swift 语法。在更新时我发现调度队列很困难,这里它给出了两个警告,因为全局(优先级)在 ios 8 中已弃用,而背景在 ios 8 中已弃用。
DispatchQueue.global(priority: DispatchQueue.GlobalQueuePriority.background).async(execute: { [weak self] in //Getting warning in this line
if let strongSelf = self {
strongSelf.populateOutBoundContacts()
strongSelf.lookForContactsToPresent()
}
})
【问题讨论】: