Swift3 バックグラウンド処理
let backgroundQueue = DispatchQueue(label: "com.app.queue",
qos: .background,
target: nil)
backgroundQueue.async {
print("Dispatched to background queue")
DispatchQueue.main.async {
print("main thread dispatch")
}
DispatchQueue.global(qos: .userInitiated).async {
print("user initiated task")
}
}
Author And Source
この問題について(Swift3 バックグラウンド処理), 我々は、より多くの情報をここで見つけました https://qiita.com/katsukawa/items/03fbcb6c56793ece971c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .