У меня есть MKPinAnnotationView, и в моем методе viewForAnnotation я делаю следующее:
customPinView.image = [UIImage imageNamed:@"blah.png"];
Я добавил blah.png к своим ресурсам (перетаскивая файл в)
Я все еще вижу значок булавки, а не мое изображение.Я делаю что-то неправильно?Вот полный код:
- (MKAnnotationView *)mapView:(MKMapView *)map viewForAnnotation:(id <MKAnnotation>)annotation
{
static NSString *AnnotationViewID = @"annotationViewID";
MKAnnotationView *annotationView = (MKAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:AnnotationViewID];
if (annotationView == nil)
{
annotationView = [[[MKAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:AnnotationViewID] autorelease];
}
annotationView.image = [UIImage imageNamed:@"blah.png"];
annotationView.annotation = annotation;
return annotationView;
}