0

我想要两种颜色的注释。为此,我使用了以下代码,

- (MKAnnotationView *)mapView:(MKMapView *)sender viewForAnnotation:(id <MKAnnotation>)annotation {  
    static NSString *identifier = @"MyLocation";
    if ([annotation isKindOfClass:[PlaceMark class]]) {
        MKPinAnnotationView *annotationView = [[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:identifier];
        annotationView.enabled = YES;
        annotationView.canShowCallout = YES;
        @try {
            if (annotationView == nil) {
                annotationView = [[MKPinAnnotationView alloc]
                                  initWithAnnotation:annotation
                                  reuseIdentifier:identifier];
            } else {
                annotationView.annotation = annotation;
                
                if([[nsCenterOrOffice objectAtIndex:z] isEqualToString:@"C"])
                {
                    annotationView.pinColor = MKPinAnnotationColorRed;
                }
                else 
                {
                    annotationView.pinColor = MKPinAnnotationColorGreen;
                }
            }
        }
        @catch (NSException *exception) {
            NSLog(@"nsCenterOrOffice exception = %@",exception);
        }
        return annotationView;
    }
    return nil;
}

但我仍然无法为所需的注释设置所需的颜色。有时特定的注释图钉颜色为红色,有时为绿色。我不明白为什么会这样。有谁能够帮我 ?谢谢...

我重做我的代码..这是我更新的代码

MapAnnotation.h

    #import <MapKit/MapKit.h>
    #import <Foundation/Foundation.h>

    @interface MapAnnotation : MKPointAnnotation
    {
        NSString *title;
        NSString *subtitle;
        int dealLnk;
        float latitude;
        float longitude;
        
        CLLocationCoordinate2D coordinate;
    }

    @property (nonatomic, copy) NSString *title;
    @property (nonatomic, copy) NSString *subtitle;
    @property (nonatomic, assign) int dealLnk;
    @property (nonatomic, assign) float latitude;
    @property (nonatomic, assign) float longitude;
    @property (nonatomic, readonly) CLLocationCoordinate2D coordinate;

    - (id)initWithTitle:(NSString *)ttl subTitle:(NSString *)subttl dealLink:(int)dealLnk latitude:(float)latitude longitude:(float)longitude andCoordinate:(CLLocationCoordinate2D)c2d;
@end

MapAnnotation.m

#import "MapAnnotation.h"

@implementation MapAnnotation

@synthesize title,subtitle,dealLnk,coordinate,latitude,longitude;

- (id)initWithTitle:(NSString *)ttl subTitle:(NSString *)subttl dealLink:(int)z latitude:(float)latitude1 longitude:(float)longitude1 andCoordinate:(CLLocationCoordinate2D)c2d {
    title = ttl;
    subtitle = subttl;
    dealLnk =z;
    coordinate = c2d;
    longitude = longitude1;
    latitude = latitude1;
    
    return self;
}
@end

这是我的实现文件

-(void)startAddingAnnotation
{
    @try {
        CLLocationCoordinate2D annotationCoord;
        
        z=0;
        for (int i=0; i < [nslatitude count] ; i++,z++)
        {
            
            MapAnnotation  *dealAnnotation   = [[MapAnnotation  alloc] init];
            
            dealAnnotation.dealLnk = z;
            annotationCoord.latitude =  (CGFloat) [[nslatitude objectAtIndex:i] floatValue];
            annotationCoord.longitude = (CGFloat)[[nslongitude objectAtIndex:i] floatValue];
            dealAnnotation.coordinate = annotationCoord;
            
            dealAnnotation.title = [nsCenterName objectAtIndex:i];
            dealAnnotation.subtitle = [nsCenterAddress objectAtIndex:i];
            
            NSLog(@"latitude = %f",dealAnnotation.latitude);
            NSLog(@"longitude = %f",dealAnnotation.longitude);
            
            NSLog(@"dealAnnotation.dealLnk = %d",dealAnnotation.dealLnk);
            NSLog(@"dz = %d",z);
            [mapView addAnnotation:dealAnnotation];
           
        }
        
    }
    @catch (NSException *exception) {
        
        NSLog(@"Exception = %@",exception);
    }
    
    cord.longitude = -112.05186;
    cord.latitude = 33.46577;
    
    MKCoordinateRegion region;
    region.center = cord;
    
    MKCoordinateSpan span = {.latitudeDelta = 1.0, .longitudeDelta = 1.0};
    region.span = span;
    
    [mapView setRegion:region];
    
    
}

#pragma mark - MapView_Delegate
- (MKAnnotationView *)mapView:(MKMapView *)sender viewForAnnotation:(id <MKAnnotation>)annotation {
    

    MapAnnotation *annotation1 = (MapAnnotation *)annotation;
    z = annotation1.dealLnk;
    
      NSLog(@"annotation1.longitude = %f",annotation1.latitude);
      NSLog(@"annotation1.longitude = %f",annotation1.longitude);
    
    if(z<[nslatitude count])
    {
        MKAnnotationView *pinView = nil;
        static NSString *defaultPinID = @"pin1";
        
        pinView = (MKAnnotationView *)[mapView dequeueReusableAnnotationViewWithIdentifier:defaultPinID];
        
      
        if ( pinView == nil )
            pinView = [[MKAnnotationView alloc]
                       initWithAnnotation:annotation1 reuseIdentifier:defaultPinID];
        pinView.canShowCallout = YES;
        
        @try {
            
            if([[nsCenterOrOffice objectAtIndex:z] isEqualToString:@"C"])
            {
                pinView.image = [UIImage imageNamed:@"flag1.png"];
            }
            else
            {
                pinView.image = [UIImage imageNamed:@"flag2.png"];
            }
            pinView.annotation = annotation1;
            pinView.tag = [[nsCenterName objectAtIndex:z] intValue];
            
        }
        @catch (NSException *exception) {
            NSLog(@"nsCenterOrOffice exception = %@",exception);
        }
        
        UIButton *rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
        [rightButton setTitle:annotation.title forState:UIControlStateNormal];
        [pinView setRightCalloutAccessoryView:rightButton];

        return pinView;
    }
    else
    {
        return nil;
    }
    
}

现在的问题是,所有注释都指向不同的位置。我不明白为什么会这样?我的代码有什么问题吗?

4

2 回答 2

1

确定引脚颜色的条件基于此委托方法之外的数据,并且不能保证它与为特定注释调用此委托方法时同步。


在这种if情况下:

if([[nsCenterOrOffice objectAtIndex:z] isEqualToString:@"C"])

z变量显然是在此委托方法之外声明和设置的一些实例变量(可能在添加注释之前)。

同样,不能保证viewForAnnotation添加注释后立即调用委托方法。也不能保证每个注释只调用一次委托方法。 因此,该值可能与调用委托方法的当前z值不对应。 annotation

委托方法很可能在调用之后addAnnotation被调用,它的调用顺序与添加注释的顺序不同,并且每个注释都会被调用多次(例如,如果用户平移或缩放地图和注释会重新出现)。


要解决此问题,请将“is center or office”属性添加到Placemark类本身,并在创建注释时和调用之前addAnnotation设置该属性。然后,在viewForAnnotation方法中,您可以将annotation参数转换为 aPlacemark并访问属性以实现条件。例如:

//where you create and add the annotation:
Placemark *pm = [[Placemark alloc...
pm.coordinate = ...
pm.title = ...
pm.centerOrOffice = [nsCenterOrOffice objectAtIndex:z];
[mapView addAnnotation:pm];


//in viewForAnnotation:
Placemark *myPlacemark = (Placemark *)annotation;
if ([myPlacemark.centerOrOffice isEqualToString:@"C"])
...


另一个不相关的问题是注释视图创建逻辑不太正确。
代码调用initWithAnnotation了两次,实际上第二次initWithAnnotation调用永远不会被调用,因为第一次调用总是会成功。

您可能想要的是首先调用dequeueReusableAnnotationViewWithIdentifier:,然后,如果返回nil,调用initWithAnnotation

重构代码时viewForAnnotation,请务必将设置pinColor 注释视图的出队/初始化外部return annotationView;的代码(例如,在 之前)正确处理重用视图。

于 2013-07-30T12:59:43.430 回答
0

viewForAnnotation依赖于一些外部变量,nsCenterOrOffice并且z. 在您向我们展示如何设置这些变量之前,我们当然无法帮助您。

无论如何,这不是一个谨慎的做法。您viewForAnnotation通常应该仅依赖 的属性,而annotation不是外部变量。

于 2013-07-30T13:09:00.720 回答