1
func mapView(_ mapView: MKMapView, didSelect view: MKAnnotationView)
の内部でクラスタからアノテーションを取得する方法はありますか?クラスタ化されたアノテーションを取得
私はFBAnnotationClusteringSwift
ライブラリを使用しています。単一の注釈付き
func mapView(_ mapView: MKMapView, didSelect view: MKAnnotationView) {
print(view)
if view is FBAnnotationClusterView {
// TODO : What would be now ?
} else {
let ann = view.annotation as! FBAnnotation
let selected = dicAnnotations[ann]
performSegue(withIdentifier: "detailSegue", sender: selected)
}
}
だけのシンプルな注釈のためのビューを求めるが、私を助けることができる何かを見つけることができません、あまり問題ではなかったです。 Btw。 dicAnnotations
は辞書[FBAnnotation, MyObjectType]
です。これが、アノテーションに隠された選択項目を取得する方法です。
ありがとうございます!