我的场景是这样的。我需要发送一个网络请求,作为响应,我将成为一个图像 URL 列表。然后我需要同时发送多个网络请求来获取所有这些图像,一旦我下载了所有图像,我需要填充一个tableView
.
为了满足这些要求,我试图了解 Playground 之间的关系,DispatchQueue
到目前为止DispatchGroup
,这是我的代码。
var concurrentQueue = DispatchQueue(label: "test",attributes: .concurrent)
var myGroup = DispatchGroup()
var mySecondGroup = DispatchGroup()
myGroup.notify(queue: DispatchQueue.main) {
print("Initial Json request with List of URLs completed")
mySecondGroup.enter()
concurrentQueue.async {
for i in 10...15 {
print(i)
if(i==15){
mySecondGroup.leave()
}
}
}
}
mySecondGroup.notify(queue: DispatchQueue.main) {
print("All Images download complete")
}
myGroup.enter()
concurrentQueue.async {
for i in 0...5 {
print(i)
if(i==5){
myGroup.leave()
}
}
}
问题是我得到了结果
0
1
2
3
4
5
Initial Json request with List of URLs completed
10
11
All Images download complete
12
13
14
15
但我想要的是这样的
0
1
2
3
4
5
Initial Json request with List of URLs completed
10
11
12
13
14
15
All Images download complete
我真的不明白我在这里做错了什么,任何帮助将不胜感激。