我正在制作一张有一些标记的地图,我想创建一个信息视图,该视图将显示每个标记的图像和一些文本。
所以,当我按下信息按钮时,它会进入信息视图。
我在代码上有这个:
func mapView(mapView: MKMapView, annotationView: MKAnnotationView, calloutAccessoryControlTapped control: UIControl) {
if control == annotationView.rightCalloutAccessoryView {
performSegueWithIdentifier("showInfo", sender: data)
}
}
但我想从“位置”传递数据,以便为每个位置显示图像。
我需要在Swift中执行此操作。
非常感谢。