According to the Apple docs, MKPinAnnotationView\'s pin color is available in red, green and purple. Is there any way to get other colors also? I\'ve found nothing in the do
I tried this way and it seems to be ok...
UIImage * image = [UIImage imageNamed:@"blue_pin.png"]; UIImageView *imageView = [[[UIImageView alloc] initWithImage:image] autorelease]; [annotationView addSubview:imageView]; annotationView = nil;
using the complete pin image... as the yonel example