如何在Swift中显示多个丢弃引脚的详细信息

时间:2015-12-01 02:09:57

标签: swift dictionary pins

在Swift中,我可以添加地图注释并在用户点击" i"时使用丢弃引脚的segue显示详细信息,但是我无法使用segue显示多个丢弃引脚的详细信息;与ViewTable不同,此处不涉及索引。我该怎么做?

1 个答案:

答案 0 :(得分:0)

这可以给你一些提示吗?

func mapView(mapView: MKMapView!, annotationView view: MKAnnotationView!, 
         calloutAccessoryControlTapped control: UIControl!) {
    //get the annotation ,maybe you need cast the type
    // let anno = view.annotation
    //performSegue here

}