我试图从地图注释中的右控制按钮中删除:
func mapView(_ mapView: MKMapView, annotationView view: MKAnnotationView, calloutAccessoryControlTapped control: UIControl) {
if control == view.rightCalloutAccessoryView {
performSegue(withIdentifier: "toTramsView", sender: view)
}
}
但我需要发件人作为MKAnnotation,因为我需要发送给目标VC的详细信息。现在发件人就是别针了。我怎么能这样做?