Mapkit 中的 iOS Pin 颜色问题

标签 ios mkannotation apple-maps

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

- (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

map 标注.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;
    }
    
}

现在的问题是,所有注释都指向一些不同的位置。我不明白为什么会发生这种情况?我的代码有什么问题吗?

最佳答案

确定图钉颜色的条件基于此委托(delegate)方法外部的数据,并且不能保证它会与为特定注释调用此委托(delegate)方法时同步。


在这个 if 条件下:

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

z 变量显然是在该委托(delegate)方法之外声明和设置的某个实例变量(可能就在添加注释之前)。

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

委托(delegate)方法很可能在调用addAnnotation之后调用,它的调用顺序与添加注释的顺序不同,并且会被多次调用对于每个注释(例如,如果用户平移或缩放 map ,注释将返回 View )。


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

//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"])
...


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

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

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

关于Mapkit 中的 iOS Pin 颜色问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17946302/

相关文章:

ios - 用于本地化 xliff 格式的 Xcode 导出

ios - 是否可以加快 MKMapView 中注释的删除速度?

ios - 自定义 map 注释

ios - 如何在 Swift 中使用 Apple map - 你必须使用 C 还是 Swift 可以?

ios - 将 UITabBar 放置在 UITabBarController 中的屏幕顶部

android - 使用 appium 进行通用移动测试

ios - 以编程方式从数组中选择 map 注释

ios - Swift - 将不同的图像从数组设置为注释图钉

ios - 尝试在我的应用程序中打开苹果 map 应用程序时发送到实例的无法识别的选择器

ios - 使用 Apple Maps 确定用户是否在多边形区域之外