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

NSMutableDictionaryここでは、の理解を設定することもできますNSString
カスタムを作成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 に答える
1

カスタムデータ変数を実装する正確な方法や、クラスの同等性が失敗する理由を見つけることができませんでした。しかし、私はこのような状況を克服する方法を考え出しました。これは方法が冗長かもしれませんが、それでも魅力のように機能します。

したがって、アイデアは、コントロールボタンでタグ付けシステムを使用することです。マップビューにメッセージを送信して注釈を追加するたびに、viewforannotationメソッドがすぐに呼び出されることを確認しました。配列を反復処理しているので、インデックスグローバルポインターを維持し、それを使用してコントロールボタンのタグを設定しました。後でボタンがクリックされたときに、タグを取得し、それを使用して必要なオブジェクトを取得します。

他の誰かが代替または直接の解決策を持っています、投稿してください。

于 2013-03-11T13:10:24.007 に答える