用点替换MKAnnotation引脚

时间:2015-10-09 00:58:24

标签: ios swift mkmapview

'Find My Friends'显示用户点的紫色版本而不是别针,我该怎么做?

func mapView(mapView: MKMapView, viewForAnnotation annotation: MKAnnotation) -> MKAnnotationView? {
    let reuse = "blip"
    if let annotation = annotation as? MKPointAnnotation {
        let annotationView = hangMap.dequeueReusableAnnotationViewWithIdentifier(reuse)
        annotationView?.annotation = annotation
        return annotationView
    }
    else {
        return nil
    }
}

我想用相同的蓝色脉冲用户位置点替换我作为注释出列的每个“引脚”。

0 个答案:

没有答案