Swift 地图引脚标注和参数

Swift map pin callout and param

我使用 MapKit 在 iOS 应用程序上制作了地图。

我使用标注按钮将我的图钉添加到我的视图中,该按钮在图钉弹出窗口中显示了详细信息按钮。

此时,一切都很好,当我点击详细信息按钮时,我可以打印一些文本,呈现一个新的视图控制器,但我的问题是我不知道如何知道我的哪个引脚已点击。

我可以使用标题来解决它,但这对我来说不是最好的方法,我更喜欢使用我的项目 ID 而不是字符串。

如果有人知道如何在我的图钉上添加 "id" 属性 或使用副标题 属性(无需在弹出气泡中显示),我将不胜感激:)

感谢您的帮助。

func mapView(_ mapView: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {
    if annotation is MKUserLocation {
        return nil
    }

    let annotationView = MKAnnotationView(annotation: annotation, reuseIdentifier: "customAnnotation")
    annotationView.image = UIImage(named: "pin")
    annotationView.canShowCallout = true
    annotationView.rightCalloutAccessoryView = UIButton(type: .detailDisclosure)

    return annotationView
}


func mapView(_ mapView: MKMapView, annotationView view: MKAnnotationView, calloutAccessoryControlTapped control: UIControl){

    print("OK, item tapped.")
}

您可以子class MKPointAnnotation 添加 ID 属性

class CustomPointAnnotation: MKPointAnnotation {
    let id: Int

    init(id: Int) {
        self.id = id
    }
}

用法

let annotation = CustomPointAnnotation(id: INTEGER)
annotation.coordinate = CLLocationCoordinate2D(latitude: DOUBLE, longitude: DOUBLE)
mapView.addAnnotation(annotation)

func mapView(_ mapView: MKMapView, annotationView view: MKAnnotationView, calloutAccessoryControlTapped control: UIControl) {
    if let annotation = view.annotation as? CustomPointAnnotation {
        print("Annotation \(annotation.id)")
    }
}

您还可以通过扩展基础 MKAnnotation 协议来创建自己的注解 class,如下所示:

class CustomAnnotation: NSObject, MKAnnotation {
    let id: Int
    let coordinate: CLLocationCoordinate2D

    init(id: Int, latitude: Double, longitude: Double) {
        self.id = id
        self.coordinate = CLLocationCoordinate2D(latitude: latitude, longitude: longitude)
    }
}