我一直在处理调度组,想知道调度组的notify回调的位置如何影响回调何时被调用。我从数据库中读取数据,然后为读取的数据中的每一项提取一张图片。当我让notify位于初始数据库读取块的外部时,我注意到它会立即被调用,但是当notify位于块的内部时,它的行为是正确的。这是我的代码:
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()
})
}
})
}
当通知位于原始数据库读取块内时,此代码的行为正常。但是,如果我把这个放在
ref.observeSingleEvent
块之后,就会立即调用notify。有人能给我解释一下吗?
最佳答案
对。异步代码:-)
代码执行一直运行到函数的末尾,然后将调用完成处理程序
关于ios - 调度组通知布置?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41990642/