This is a very simple question, I figured I could just do something like this to make a custom image show up instead of the pin but it's not working. Any help? Thank you!
- (MKAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation {
self.pinAnnotation = [[MKPinAnnotationView alloc]initWithAnnotation:annotation reuseIdentifier:@"personAnnotation"];
// self.pinAnnotation.pinColor = self.pinColor;
self.pinAnnotation.image = [UIImage imageNamed:@"myImage"];
self.pinAnnotation.animatesDrop = YES;
return self.pinAnnotation;
}