views:

45

answers:

1

Hi, Can I customize the pin MKPlaceMark?

Thanks for Help

A: 

I believe that your MKPlaceMarks will still get pin views via

-[MKMapViewDelegate mapView:viewForAnnotation:]

since MKPlaceMarks are MKAnnotations. Assuming that's the case, you can inspect the Annotation object to see if it's one of your MKPlaceMarks and return whatever MKAnnotationView type you like.

Seamus Campbell