0
私は以前これについて質問があったと知っています。しかし、私はそれを解決することができないので、少し騒ぎと思う。MKAnnotation undeclared
これをしようとしたとき、私はそのエラーを取得しています:
MKAnnotation *annotation = [[MKAnnotation alloc] initWithCoordinate:coordenada title:@"HELLO!"];
[mapa addAnnotation:annotation];
私も次のような方法があります。
- (MKAnnotationView *) mapView: (MKMapView *) mapView viewForAnnotation: (id<MKAnnotation>) annotation
{
MKPinAnnotationView *pin = (MKPinAnnotationView *) [self.mapa dequeueReusableAnnotationViewWithIdentifier: @"asdf"];
if (pin == nil)
{
pin = [[[MKPinAnnotationView alloc] initWithAnnotation: annotation reuseIdentifier: @"asdf"] autorelease];
}
else
{
pin.annotation = annotation;
}
pin.pinColor = MKPinAnnotationColorRed;
pin.animatesDrop = YES;
return pin;
}
とヘッダで#import < MapKit/MKAnnotation.h>
をしましたが。
お願いします。
ありがとうございました!