views:

21

answers:

1

I have a segmented controller which sits on a MKMapView. When I change MKMapType, the image of my custom pins revert to the default red. The title and subtitle, along with coordinates remain intact. Can anyone shed some light on a possible solution?

+1  A: 

I had a similar problem a while ago.

http://stackoverflow.com/questions/1805897/iphone-annotation-image-disappears-on-touch

Make sure you're using MKAnnotationView instead of MKPinAnnotationView everywhere in your viewForAnnotation method.

dc
Thank you so much, I've been struggling with this one for awhile now.
Oh Danny Boy