5

我有一个地图视图控制器(UIViewController,MKMapView),它的委托(HCIResultMapViewController)。

我希望在这部分具有以下功能。

1)。我希望使用我定制的 NSObject ,这样我就可以将其他细节与标题、副标题等基本实体关联起来。

因此,根据我的需要,我编码如下

在 HCIResultMapViewController

- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.

_houseList = [[_resultList objectForKey:@"result"] objectForKey:@"listings"];

// NSLog([_houseList description]);

int i = 0;

for (NSDictionary *house in _houseList) {

    HCIAnnotationViewController *annotation = [[HCIAnnotationViewController alloc]
                                     initwithHouse:house];
    [_mapView addAnnotation:annotation];
    // NSLog(@"asdjhasdjsajdhaksdjghasdasdjahsdahskvdka");
    self.currIdentifier = i;
    i++;
}

[_mapView setShowsUserLocation:NO];
}

其他委托功能

-(void) mapView:(MKMapView *)mapView annotationView:(MKAnnotationView *)view calloutAccessoryControlTapped:(UIControl *)control {

for (NSObject<MKAnnotation> *annotation in _mapView.selectedAnnotations) {
    NSLog(@"hellomaster");
    NSLog(annotation.title);
    if ([annotation isKindOfClass:[HCIAnnotationViewController class]]) {
        NSLog(@"hellomaster");
    }
}

最后一个

-(MKAnnotationView*) mapView:(MKMapView *)mapView viewForAnnotation:(id<MKAnnotation>)annotation {

NSString *identifier = @"currIdentifier";

    MKPinAnnotationView *annotationView =
    (MKPinAnnotationView *)[_mapView dequeueReusableAnnotationViewWithIdentifier:identifier];

    if (annotationView == nil) {
        annotationView = [[MKPinAnnotationView alloc]
                          initWithAnnotation:annotation
                          reuseIdentifier:identifier];
    } else {
        annotationView.annotation = annotation;
    }

    annotationView.enabled = YES;
    annotationView.canShowCallout = YES;
annotationView.tag = self.currIdentifier;

    // Create a UIButton object to add on the
    UIButton *rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
    [rightButton setTitle:annotation.title forState:UIControlStateNormal];
    [annotationView setRightCalloutAccessoryView:rightButton];

/*
    UIButton *leftButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
    [leftButton setTitle:annotation.title forState:UIControlStateNormal];
    [annotationView setLeftCalloutAccessoryView:leftButton];
  */  
    return annotationView;
}

但我看到类等价失败了。你能告诉我我做错了什么吗?

简而言之,我想我想要的是如何发送一些数据(NSDictionary *)以及注释,以便我可以随时检索它?

请不要将此标记为重复问题左右。我尝试了很多问题,谷歌搜索等,但找不到合适的解决方案。

4

2 回答 2

1

我找不到实现自定义数据变量的确切方法或我的类等效失败的原因。但我想出了一个办法来克服这种情况。这在方法上可能是多余的,但仍然像一个魅力。

所以这个想法是在控制按钮中使用标记系统。我观察到,每次我向地图视图发送消息以添加注释时,它都会立即调用我的 viewforannotation 方法。由于我正在遍历一个数组,因此我维护了一个索引全局指针,我用它设置了控制按钮的标记。稍后单击按钮时,我检索标签并使用它来获取我想要的对象。

其他人有任何替代或直接解决方案,请发布。

于 2013-03-11T13:10:24.007 回答
1

这里也可以设置NSMutableDictionaryNSString.
创建自定义AnnotationView

#import <MapKit/MapKit.h>

@interface AnnotationView : MKPlacemark

@property (nonatomic, readwrite, assign) CLLocationCoordinate2D coordinate;

@property (nonatomic, strong) NSString *title; //Here You cam set `NSMutableDictionary` instand of `NSString`
@property (nonatomic, strong) NSString *subtitle; //Here You cam set `NSMutableDictionary` instand of `NSString`


@end

而在.m file

#import "AnnotationView.h"

@implementation AnnotationView

- (id)initWithCoordinate:(CLLocationCoordinate2D)coordinate addressDictionary:(NSDictionary *)addressDictionary
{
    if ((self = [super initWithCoordinate:coordinate addressDictionary:addressDictionary]))
    {
        self.coordinate = coordinate;
    }
    return self;
}

@end

// 使用注释添加#import "AnnotationView.h"你的相关.m file

CLLocationCoordinate2D pCoordinate ;
pCoordinate.latitude = LatValue;
pCoordinate.longitude = LanValue;

// Create Obj Of  AnnotationView class  

AnnotationView *annotation = [[AnnotationView alloc] initWithCoordinate:pCoordinate addressDictionary:nil] ;

    annotation.title = @"I m Here";
    annotation.subtitle = @"This is Sub Tiitle";

[self.mapView addAnnotation:annotation];
于 2013-03-11T12:31:07.753 回答