'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
}
}
我想用相同的蓝色脉冲用户位置点替换我作为注释出列的每个“引脚”。