iOS : Why can't I get mapkit to display a custom annotation pin image?
figured that using my own custom pin image for annotations would be super easy. But I have never been able to get it to work, and I have no idea why! I am simply using: - (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation { if([annotation isKindOfClass:[MKUserLocation class]]) return nil; NSString *annotationIdentifier = @"CustomViewAnnotation"; CustomAnnotationView * customAnnotationView = (CustomAnnotationView *) [self.mapview dequeueReusableAnnotationViewWithIdentifier:annotationIdentifier]; if(!customAnnotationView) { customAnnotationView=[