Swift 3.0 地图 viewForAnnotation 未输出正确的标注

Swift 3.0 Map viewForAnnotation Not Outputting Proper Callout

我无法理解 viewForAnnotation 方法的代码及其调用时间。我的意图是根据图钉颜色显示特定的标注。第一次加载 mapView 时,标注会正确显示,但是在切换视图控制器后,标注按钮无法根据图钉颜色正确显示。我有一种预感,这可能与调用 viewForAnnotation 时有关(是否每次地图出现时都调用它)。我无法弄清楚哪里出了问题,因为我不确定代码的每一部分都做了什么。

func mapView(_ map: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView? {

if (annotation is MKUserLocation) {

    return nil
}

let identifier = "pinAnnotation"


// In particular I am not sure what the code below does

if let pin = annotation as? ColorPointAnnotation {


    if let view = map.dequeueReusableAnnotationView(withIdentifier: identifier) as? MKPinAnnotationView {
        view.annotation = annotation
        view.pinTintColor = pin.color ?? .purple

        return view

    } else {

        let view = MKPinAnnotationView(annotation: annotation, reuseIdentifier: identifier)
        view.isEnabled = true

        view.canShowCallout = true

        view.pinTintColor = pin.color ?? .purple

        let btn = UIButton(type: .detailDisclosure)
        view.rightCalloutAccessoryView = btn


        if view.pinTintColor == .red || view.pinTintColor == .green {
            let button = UIButton(frame: CGRect(x: 0, y: 0, width: 30, height: 30))
            button.setBackgroundImage(UIImage(named: "car"), for: .normal)
            button.addTarget(self, action: #selector(MapVC.getDirections), for: .touchUpInside)
            view.leftCalloutAccessoryView = button
        } else {
            let button = UIButton(frame: CGRect(x: 0, y: 0, width: 30, height: 30))
            button.setBackgroundImage(UIImage(named: "other"), for: .normal)
            button.addTarget(self, action: #selector(MapVC.other), for: .touchUpInside)
            view.leftCalloutAccessoryView = button
        }

        return view
    }
}

if let annotationView = map.dequeueReusableAnnotationView(withIdentifier: identifier) {
    annotationView.annotation = annotation
    return annotationView
} else {
    let annotationView = MKPinAnnotationView(annotation:annotation, reuseIdentifier: identifier)
    annotationView.isEnabled = true
    annotationView.canShowCallout = true

    let btn = UIButton(type: .detailDisclosure)
    annotationView.rightCalloutAccessoryView = btn

    if annotationView.pinTintColor == .red || annotationView.pinTintColor == .green {

        let smallSquare = CGSize(width: 120, height: 120)
        let button = UIButton(frame: CGRect(origin: CGPoint(x: 0,y :0), size: smallSquare))
        button.setBackgroundImage(UIImage(named: "car"), for: .normal)
        button.addTarget(self, action: #selector(MapVC.getDirections), for: .touchUpInside)
        annotationView.leftCalloutAccessoryView = button
    } else {
        let button = UIButton(frame: CGRect(x: 0, y: 0, width: 30, height: 30))
        button.setBackgroundImage(UIImage(named: "other"), for: .normal)
        button.addTarget(self, action: #selector(MapVC.other), for: .touchUpInside)
        annotationView.leftCalloutAccessoryView = button
    }

    return annotationView
}

}

方法func mapView(_ map: MKMapView, viewFor annotation: MKAnnotation) -> MKAnnotationView?MapViewDelegate的委托方法,每次你的mapView显示一个Region中的Annotation时都会执行这个方法,如果实现了你可以显示[的任何子类=13=] 作为地图中的 annotationView,要显示自定义标注,您需要实现 MapViewDelegate

的此方法
//example code
func mapView(_ mapView: MKMapView, didSelect view: MKAnnotationView){
    let customCallout = CustomCallout(frame: CGRect(x: 0, y: 0, width: self.view.frame.size.width * 0.8, height: 50))
   customCallout.backgroundColor = UIColor.red //your color here
   view.addSubView(customCallout)
   //adjust any param you need here
}

希望对您有所帮助