私は古いスウィフトコードで開発されたアプリを持っています。今私はそれを最新の迅速な構文に更新しています。私はここにそれがグローバル(優先順位)として2回の警告を与えて、ディスパッチキューにあることは困難であることが見出さ更新しながら、IOS 8で廃止されましたし、背景は、IOS構文はDispatchQueue.global(qos: DispatchQoS.QoSClass)
に変更された8iosで優先順位と背景が推奨されていません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()
}
})
https://stackoverflow.com/a/37806522/5362750これをご覧ください –