2

このAppleサンプルアプリのゴールデンゲートブリッジアノテーションのMKMapViewようなビューコントローラにつながる開示ボタン付きのアノテーションを表示したいと思います。

plistから座標をロードすると、注釈はタイトル/サブタイトルで正しく表示されますが、メソッドは

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

効果はありません。

どういうわけか注釈をpinannotationsにリンクする必要があると思いますか?

MapViewController.h:

#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
#import <CoreLocation/CoreLocation.h>
#import "Annotation.h"

@interface MapViewController : UIViewController<CLLocationManagerDelegate, MKMapViewDelegate>

@property (strong, nonatomic) CLLocationManager *location;
@property (nonatomic, retain) NSArray *data;    
@end

MapViewController.m:

#import "MapViewController.h"

@interface MapViewController ()
@property (nonatomic, weak) IBOutlet MKMapView *mapView;
@end

@implementation MapViewController
@synthesize data;
@synthesize location, minLatitude, maxLatitude, minLongitude, maxLongitude;

- (void)viewDidLoad
{
    NSString *dataPath = [[NSBundle mainBundle] pathForResource:@"City" ofType:@"plist"];
    self.data = [NSArray arrayWithContentsOfFile:dataPath];

    for (int i = 0; i < data.count; i++) {

        NSDictionary *dataItem = [data objectAtIndex:i];

        //Create Annotation
        Annotation *building = [[Annotation alloc] init];
        building.title = [dataItem objectForKey:@"Title"];
        building.subtitle = [dataItem objectForKey:@"Subtitle"];

        MKCoordinateRegion buildingcoordinates = { {0.0, 0.0}, {0.0, 0.0} };
        buildingcoordinates.center.latitude = [[dataItem objectForKey:@"Latitude"] floatValue];
        buildingcoordinates.center.longitude = [[dataItem objectForKey:@"Longitude"] floatValue];

        building.coordinate = buildingcoordinates.center;
        [self.mapView addAnnotation:building];

    }

    [super viewDidLoad];

}

- (MKAnnotationView *)mapView:(MKMapView *)theMapView viewForAnnotation:(id <MKAnnotation>)annotation
{
    if ([annotation isKindOfClass:[MKUserLocation class]])
        return nil;

        static NSString *pinIdentifier = @"pinIndentifier";

        MKPinAnnotationView *pinView = (MKPinAnnotationView *)
        [self.mapView dequeueReusableAnnotationViewWithIdentifier:pinIdentifier];
        if (pinView == nil)
        {
            // if an existing pin view was not available, create one
            MKPinAnnotationView *customPinView = [[MKPinAnnotationView alloc]
                                                  initWithAnnotation:annotation reuseIdentifier:pinIdentifier];
            customPinView.pinColor = MKPinAnnotationColorPurple;
            customPinView.animatesDrop = YES;
            customPinView.canShowCallout = YES;

            UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeDetailDisclosure];
            [rightButton addTarget:self
                            action:@selector(showDetails:)
                  forControlEvents:UIControlEventTouchUpInside];
            customPinView.rightCalloutAccessoryView = rightButton;

            return customPinView;
        }
        else
        {
            pinView.annotation = annotation;
        }
        return pinView;
}

Annotation.h:

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

@interface Annotation : NSObject <MKAnnotation> {
    CLLocationCoordinate2D coordinate;
    NSString *title;
    NSString *subtitle;
}

@property(nonatomic, assign) CLLocationCoordinate2D coordinate;
@property(nonatomic, copy) NSString *title;
@property(nonatomic, copy) NSString *subtitle;

@end

Annotation.m:

#import "Annotation.h"

@implementation Annotation

@synthesize coordinate, title, subtitle;

@end
4

1 に答える 1

4

ほとんどの場合、マップ ビューdelegateが設定されていないため、viewForAnnotationデリゲート メソッドが呼び出されません。

IBOutlet として宣言mapViewしたので、xib で、マップ ビューdelegateがファイルの所有者に接続されていることを確認します。

または、MapViewControllerのメソッドの先頭で、viewDidLoadプログラムで設定します。

mapView.delegate = self;
于 2013-01-31T01:44:18.430 に答える