我一直在搞乱调度组,并且想知道调度组的通知回调的位置如何影响调用回调的时间。我正在从我的数据库中读取数据,然后为读取的数据中的每个项目获取图片。当我在初始数据库读取块之外有通知时,我注意到它立即被调用,但是当通知在块内部时,它的行为正确。这是我的代码:
override func viewDidAppear(_ animated: Bool) {
let ref = FIRDatabase.database().reference().child("users").child((FIRAuth.auth()?.currentUser?.uid)!).child("invites")
ref.observeSingleEvent(of: .value, with: { snapshot in
if let snapshots = snapshot.children.allObjects as? [FIRDataSnapshot] {
for child in snapshots {
self.dispatchGroup.enter()
let info = petInfo(petName: child.value! as! String, dbName: child.key)
print(info)
self.invitesData[info] = UIImage()
let picRef = FIRStorage.storage().reference().child("profile_images").child(info.dbName+".png")
picRef.data(withMaxSize: 1024 * 1024) { (data, error) -> Void in
if error != nil {
print(error?.localizedDescription ?? "Error getting picture")
}
// Create a UIImage, add it to the array
self.invitesData[info] = UIImage(data: data!)!
self.dispatchGroup.leave()
}
}
self.dispatchGroup.notify(queue: DispatchQueue.main, execute: {
print("YOOO")
self.invitesArray = Array(self.invitesData.keys)
print(self.invitesArray)
self.inviteTable.reloadData()
})
}
})
}
当notify在原始数据库读取块中时,此代码表现正常。但是,如果我在ref.observeSingleEvent
块之后放置,则立即调用通知。
有人可以向我解释一下吗?
答案 0 :(得分:1)
是。异步代码: - )
代码执行一直运行到函数结束,然后将调用完成处理程序