Ios4 向地图视图添加多个注释无效

Ios4 向地图视图添加多个注释无效,ios4,android-mapview,mkannotation,Ios4,Android Mapview,Mkannotation,因此,我已经成功地使用自定义图像向地图视图添加了一个注释,但是如果添加第二个注释,它只会拒绝在地图上显示 以下是相关代码: - (void)viewDidLoad { [super viewDidLoad]; //mapView = [[MKMapView alloc] initWithFrame:self.view.bounds]; mapView.delegate = self; self.navigationItem.rightBarButtonItem

因此,我已经成功地使用自定义图像向地图视图添加了一个注释,但是如果添加第二个注释,它只会拒绝在地图上显示

以下是相关代码:

- (void)viewDidLoad {
    [super viewDidLoad];
    //mapView = [[MKMapView alloc] initWithFrame:self.view.bounds];
    mapView.delegate = self;

    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"Location Info" style:UIBarButtonItemStylePlain target:self action:nil];
    self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:100 target:self action:@selector(showCurrentLocationButtonTapped:)];

    [self loadOverlays];

    //TEST LOAD TWO ANNOTATIONS
    //MKPointAnnotation *testAnnot = [[MKPointAnnotation alloc] init];
    ArboretumAnnotation *arboAnnot = [[ArboretumAnnotation alloc] init];
    CLLocationCoordinate2D workingCoord;
    workingCoord.latitude = /*some coord*/;
    workingCoord.longitude = /*some coord*/;
    [arboAnnot setCoordinate:workingCoord];
    [arboAnnot setTitle:@"Test Title"];
    [arboAnnot setSubtitle:@"Test Subtitle"];
    [mapView addAnnotation:arboAnnot];
    [arboAnnot release];

    ArboretumAnnotation *arboAnnot2 = [[ArboretumAnnotation alloc] init];
    CLLocationCoordinate2D workingCoord2;
    workingCoord2.latitude = /*some coord*/;
    workingCoord2.longitude = /*some coord*/;
    [arboAnnot2 setCoordinate:workingCoord2];
    [arboAnnot2 setTitle:@"Test Title2"];
    [arboAnnot2 setSubtitle:@"Test Subtitle2"];
    [mapView addAnnotation:arboAnnot2];
    [arboAnnot2 release];
//...
}
//...
- (ArboretumAnnotationView *)mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>)annotation
{
    if ([annotation isKindOfClass:MKUserLocation.class]) {
        //it's the built-in user location annotation(blue dot)
        return nil;
    }

    NSString *annotIdentifier = @"annotation";

    MKPinAnnotationView *recycledAnnotationView = (MKPinAnnotationView *)[self.mapView dequeueReusableAnnotationViewWithIdentifier:annotIdentifier];
    if (!recycledAnnotationView) {
        MKPinAnnotationView* customPinView = [[[MKPinAnnotationView alloc]
                                               initWithAnnotation:annotation reuseIdentifier:annotIdentifier] autorelease];

        UIImage *iconImage = [UIImage imageNamed:@"arboretum.png"];

        CGRect resizeRect;

        resizeRect.size = iconImage.size;
        CGSize maxSize = CGRectInset(self.view.bounds,
                                     10.0f,
                                     10.0f).size;
        maxSize.height -= self.navigationController.navigationBar.frame.size.height + 40.0f;
        if (resizeRect.size.width > maxSize.width)
            resizeRect.size = CGSizeMake(maxSize.width, resizeRect.size.height / resizeRect.size.width * maxSize.width);
        if (resizeRect.size.height > maxSize.height)
            resizeRect.size = CGSizeMake(resizeRect.size.width / resizeRect.size.height * maxSize.height, maxSize.height);

        customPinView.image = iconImage;
        //customPinView.image.frame = CGRectMake(kBorder, kBorder, kWidth - 2 * kBorder, kWidth - 2 * kBorder);
        customPinView.opaque = NO;
        //customPinView.pinColor = MKPinAnnotationColorPurple;
        customPinView.canShowCallout = YES;
        return customPinView;
    } else {
        recycledAnnotationView.annotation = annotation;
    }
    return recycledAnnotationView;

}

我不知道我做错了什么,我添加的第一个注释显示了,但第二个没有。有什么想法吗?提前谢谢

我在发帖子几秒钟后就明白了

代码如下:

- (CLLocationCoordinate2D)coordinate
{
    CLLocationCoordinate2D theCoordinate;
    theCoordinate.latitude = /*some coord*/;
    theCoordinate.longitude = /*some coord*/;
    return theCoordinate; 
}
我完全去掉了这个函数,它解决了我的问题。抱歉打扰了

#import "ArboretumAnnotation.h"


@implementation ArboretumAnnotation

@synthesize title;
@synthesize subtitle;
@synthesize image;
@synthesize coordinate;

-init
{
    return self;
}

-initWithCoordinate:(CLLocationCoordinate2D)inCoord
{
    coordinate = inCoord;
    return self;
}

- (CLLocationCoordinate2D)coordinate
{
    CLLocationCoordinate2D theCoordinate;
    theCoordinate.latitude = /*some coord*/;
    theCoordinate.longitude = /*some coord*/;
    return theCoordinate; 
}

@end
- (CLLocationCoordinate2D)coordinate
{
    CLLocationCoordinate2D theCoordinate;
    theCoordinate.latitude = /*some coord*/;
    theCoordinate.longitude = /*some coord*/;
    return theCoordinate; 
}