I'm having a strange issue with the initial set of pins not showing the custom image.
In my
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation
Method I set the image as follows:
pushPin.image = [UIImage imageNamed:@"shopping_map_pin"];
However, for the first set of pins, this image is not being set. If I set the pin color in the same method, that is applied but not the image.
What is causing this?