我想让翠鸟下载图像并将其设置为image
我的AnnotationView
. 问题是 Kingfisher 似乎只在 's 上工作,而UIImageView
'sAnnotationView
似乎并没有暴露它。
因此一种方法是使用 Kingfishers 下载机制来检索图像并自行设置:
KingfisherManager.shared.retrieveImage(with: url) { result in
// Do something with `result`
}
但我更希望 Kingfisher 设置图像,因为使用这种方法我会丢失一些 Kingfisher 功能(例如占位符图像)。
如何获取 AnnotationView 的 ImageView?