我在地图上有一堆注释,都有自定义照片。某些照片可能尚未从Firebase下载到应用程序,因此如果它们没有可用的图像,则默认为白色圆圈图像并启动下载。下载完成后,它不会设置新图像。我怎么能这样做呢?
下面是一些代码:
func generateAnnotations() {
for photo in photos {
let annotation = DetailPhotoPointAnnotation()
let latitude = photo.latitude
let longitude = photo.longitude
annotation.coordinate.latitude = latitude
annotation.coordinate.longitude = longitude
if photo.image != nil {
annotation.image = photo.image
} else {
annotation.image = #imageLiteral(resourceName: "whiteCircle")
let path = getDocumentsDirectory().appendingPathComponent(photo.uid)
if let image = UIImage(contentsOfFile: path) {
annotation.image = image
} else {
let ref = FIRStorage.storage().reference(forURL: photo.imageUrl)
ref.data(withMaxSize: 5*1024*1024, completion: { (data, error) in
if error != nil {
print(error!)
} else {
if let imageData = data {
if let image = UIImage(data: imageData) {
photo.assignImage(image: image)
annotation.image = image
}
}
}
})
}
}
self.coordinates.append(CLLocationCoordinate2DMake(latitude, longitude))
self.mapView.addAnnotation(annotation)
}
generateOverlay()
}
如您所见,它首先会查看照片对象是否包含图像。如果没有,它会在文档目录中查找该图像。如果它不存在,它将最终下载它。有什么建议吗?
答案 0 :(得分:1)
你需要做这样的事情。转到主线程。然后更新
DispatchQueue.main.async(execute: {
imageView.image = image
})
在我的solution中,它有效。 希望这会有所帮助。